From 8091c097b62df9f223aae5b4c756c8a8cbf1cc00 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Wed, 11 Sep 2024 13:28:06 +0900 Subject: [PATCH] Minor fix to Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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} \