From 64a492f992aa854b1c60802b2a67b2a230e9d6bd Mon Sep 17 00:00:00 2001 From: Dominic Szablewski Date: Mon, 4 Sep 2023 16:30:42 +0200 Subject: [PATCH] Add src/libs/ as additional include dir as it is now specified as system headers --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 661bf90..c9c5a5a 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ DEBUG ?= false USER_CFLAGS ?= L_FLAGS ?= -lm -C_FLAGS ?= -std=gnu99 -Wall -Wno-unused-variable $(USER_CFLAGS) +C_FLAGS ?= -Isrc/libs/ -std=gnu99 -Wall -Wno-unused-variable $(USER_CFLAGS) ifeq ($(DEBUG), true) C_FLAGS := $(C_FLAGS) -g