Stop setting CFLAGS in Config.mk

This commit is contained in:
Mike Sharov 2022-02-11 12:40:17 -05:00
parent a534490236
commit bcac5268b9
1 changed files with 2 additions and 2 deletions

View File

@ -33,6 +33,6 @@ else
cflags := -Os -g0 -DNDEBUG=1
ldflags := -s
endif
CFLAGS := -Wall -Wextra -Wredundant-decls -Wshadow
cflags += -std=c11 @pkg_cflags@ ${CFLAGS}
cflags += -Wall -Wextra -Wredundant-decls -Wshadow \
-std=c11 @pkg_cflags@ ${CFLAGS}
ldflags += @pkg_ldflags@ ${LDFLAGS}