Update makefile and gitignore

main
noah metz 2025-02-04 22:15:34 -07:00
parent 70d422e59d
commit f72a5a69cd
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored

@ -1,3 +1,4 @@
*.o *.o
simulacrum simulacrum
compile_commands.json compile_commands.json
.cache

@ -1,7 +1,7 @@
APPLICATION=simulacrum APPLICATION=simulacrum
CC? = gcc CC? = gcc
CFLAGS = CFLAGS = -I./include
SOURCES = $(wildcard ./src/*.c) SOURCES = $(wildcard ./src/*.c)
OBJECTS = $(patsubst %.c,%.o, $(SOURCES)) OBJECTS = $(patsubst %.c,%.o, $(SOURCES))