From c57380ed3e5c54c9325806a8b5135c7654c34b6f Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Sun, 29 Mar 2026 10:07:16 +1100 Subject: refactor(Makefile): Use INCLUDES varible to store including directories --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9cebce2..5ed5f9d 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,9 @@ AR ?= ar OUTDIR = dist LIB = libtinyff.a -CFLAGS = -Wall -Wextra -Werror -std=c11 -Iinclude +INCLUDES = -Iinclude +CFLAGS = -Wall -Wextra -Werror -std=c11 $(INCLUDES) + DEBUG_FLAGS = -g -O0 RELEASE_FLAGS = -O2 SANFLAGS = -fsanitize=address,undefined -g -O1 -- cgit v1.2.3