From: Stephen Seo Date: Wed, 11 Sep 2024 04:28:06 +0000 (+0900) Subject: Minor fix to Makefile X-Git-Tag: 1.0~40 X-Git-Url: https://git.seodisparate.com/stephenseo/search/main.js?a=commitdiff_plain;h=8091c097b62df9f223aae5b4c756c8a8cbf1cc00;p=c_simple_http Minor fix to Makefile --- diff --git a/Makefile b/Makefile index b84edcb..b076b58 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ CC ?= gcc -COMMON_FLAGS = -Wall -Wextra -Wpedantic \ +COMMON_FLAGS := -Wall -Wextra -Wpedantic \ -Ithird_party -DEBUG_FLAGS = -Og -g -RELEASE_FLAGS = -O3 -DNDEBUG +DEBUG_FLAGS := -Og -g +RELEASE_FLAGS := -O3 -DNDEBUG ifndef MINIMAL_BUILD_FLAGS COMMON_FLAGS := ${COMMON_FLAGS} \