From f72a5a69cd951365efc4b69eb1d4144f4c1fdf19 Mon Sep 17 00:00:00 2001 From: Noah Metz Date: Tue, 4 Feb 2025 22:15:34 -0700 Subject: [PATCH] Update makefile and gitignore --- .gitignore | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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))