From 18d52cd2c6846089350132109e94f3266227d1e9 Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Mon, 1 Jul 2024 11:16:23 +0200 Subject: Add script to generate CFLAGS CLFGAS will be generated based on the OS categories (at the moment, only GNU and BSD). --- config.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'config.mk') diff --git a/config.mk b/config.mk index 2d963aa..498aeb7 100644 --- a/config.mk +++ b/config.mk @@ -9,6 +9,7 @@ OBJ = ${SRC:.c=.o} LIBNAME = liblog LIBVER = 0.0.0-a1 -CFLAGS = -Wall -ansi --std=c89 -pedantic ${OPT} -DLIBVER=\"${LIBVER}\" +CFLAGS != scripts/cflags.sh +CFLAGS += -Wall -ansi --std=c89 -pedantic ${OPT} -DLIBVER=\"${LIBVER}\" PKG_CONFIG_PATH != pkg-config --variable pc_path pkg-config | sed -E "s|.*(${PREFIX}[^:]*)[:].*|\1|g" -- cgit v1.2.3