diff --git a/.gitignore b/.gitignore index c3a35b5..67bbe8a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.o simulacrum compile_commands.json +.cache diff --git a/Makefile b/Makefile index b8f8608..49ccb4f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ APPLICATION=simulacrum CC? = gcc -CFLAGS = +CFLAGS = -I./include SOURCES = $(wildcard ./src/*.c) OBJECTS = $(patsubst %.c,%.o, $(SOURCES))