From 42ac28d44ac7e1f102e9ba37fa91923e822e47df Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 23 Oct 2023 04:30:50 +0100 Subject: Make root directory an include path, set #include's properly Easier to write includes now just using < with the module name, in comparison to using relative paths. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index bd3cdff..2ca4781 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=gcc -GENERAL-FLAGS=-Wall -Wextra -Werror -Wswitch-enum -std=c11 +GENERAL-FLAGS=-Wall -Wextra -Werror -Wswitch-enum -std=c11 -I. DEBUG-FLAGS=-ggdb -fsanitize=address RELEASE-FLAGS=-O3 CFLAGS:=$(GENERAL-FLAGS) $(DEBUG-FLAGS) -- cgit v1.2.3-13-gbd6f