Minor fix to Makefile
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 7s

This commit is contained in:
Stephen Seo 2024-09-11 13:28:06 +09:00
parent 30e0753ba8
commit 8091c097b6

View file

@ -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} \