diff options
author | turret <turret@duck.com> | 2023-06-29 16:59:40 -0500 |
---|---|---|
committer | turret <turret@duck.com> | 2023-06-29 16:59:40 -0500 |
commit | 700a3e787bd0a07171c38fd2b2b051c550ee35cf (patch) | |
tree | 0c1a17b4877fd2d5276f61bc5860245fde1beb2f | |
parent | c98acc3b882da05ad5c8f6ed2dcec8eaec47b49b (diff) | |
download | donut-700a3e787bd0a07171c38fd2b2b051c550ee35cf.tar.gz donut-700a3e787bd0a07171c38fd2b2b051c550ee35cf.tar.bz2 donut-700a3e787bd0a07171c38fd2b2b051c550ee35cf.zip |
config.mk: add cppflags to cflags
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ PREFIX = /usr/local CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -D_POSIX_C_SOURCE=200809L -CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os +CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${CPPFLAGS} LDFLAGS = -lm -lX11 CC = cc |