Minor fix to Makefile
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 7s
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 7s
This commit is contained in:
parent
30e0753ba8
commit
8091c097b6
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -1,9 +1,9 @@
|
||||||
CC ?= gcc
|
CC ?= gcc
|
||||||
|
|
||||||
COMMON_FLAGS = -Wall -Wextra -Wpedantic \
|
COMMON_FLAGS := -Wall -Wextra -Wpedantic \
|
||||||
-Ithird_party
|
-Ithird_party
|
||||||
DEBUG_FLAGS = -Og -g
|
DEBUG_FLAGS := -Og -g
|
||||||
RELEASE_FLAGS = -O3 -DNDEBUG
|
RELEASE_FLAGS := -O3 -DNDEBUG
|
||||||
|
|
||||||
ifndef MINIMAL_BUILD_FLAGS
|
ifndef MINIMAL_BUILD_FLAGS
|
||||||
COMMON_FLAGS := ${COMMON_FLAGS} \
|
COMMON_FLAGS := ${COMMON_FLAGS} \
|
||||||
|
|
Loading…
Reference in a new issue