diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-07-31 14:24:24 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-07-31 14:24:24 +0200 |
commit | 0b0fcaa7136d7de2e1bc5dc05a576f5fe5608995 (patch) | |
tree | ba54644cf5c6cf4d50fa1fba63e959c8dcba7deb /config.mk | |
parent | 787ebb0e40e5e89ce9d5d56dfdf7065a63b4abe5 (diff) |
config.mk: use c99, not -c90+ansi, unrecognized on OpenBSD
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,10 +13,10 @@ GIF_LIBS = -lgif CPPFLAGS = # debug -#CFLAGS = -std=c90 -ansi -pedantic -Wall -Wextra -O0 -g -ggdb ${CPPFLAGS} +#CFLAGS = -std=c99 -pedantic -Wall -Wextra -O0 -g -ggdb ${CPPFLAGS} #LDFLAGS = ${LIBS} # optimized -CFLAGS = -std=c90 -ansi -pedantic -Wall -Wextra -Os ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os ${CPPFLAGS} LDFLAGS = -s ${LIBS} # compiler and linker |