From 700a3e787bd0a07171c38fd2b2b051c550ee35cf Mon Sep 17 00:00:00 2001 From: turret Date: Thu, 29 Jun 2023 16:59:40 -0500 Subject: config.mk: add cppflags to cflags --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index 91ebfd6..6880dbe 100644 --- a/config.mk +++ b/config.mk @@ -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 -- cgit v1.2.3