aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-10-11 01:45:08 -0400
committerJack Jamison <jackqjamison@gmail.com>2025-10-11 01:45:08 -0400
commitba3a68a4f73f6653b1e1b095abc08234dedc504d (patch)
treec7f12e78cd6d97c7f559811064865bc8a6eeeb9f /Makefile
parentf23baade916e844b6b6c9714e6b5d81020f6ba57 (diff)
added graphics.h
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 79e9587..98e3784 100644
--- a/Makefile
+++ b/Makefile
@@ -22,15 +22,15 @@ $(BIN): $(OBJ)
printf " LD %s\n" $@
$(CC) $(LDFLAGS) $^ -o $@
-$(OBJDIR)/%.o: %.c %.h
+$(OBJDIR)/%.o: %.c %.h state.h
printf " CC %s\n" $@
$(CC) $(CFLAGS) -c $< -o $@
-$(OBJDIR)/%.o: */%.c */%.h
+$(OBJDIR)/%.o: */%.c */%.h state.h
printf " CC %s\n" $@
$(CC) $(CFLAGS) -c $< -o $@
-$(OBJDIR)/%.o: %.c
+$(OBJDIR)/%.o: %.c state.h
printf " CC %s\n" $@
$(CC) $(CFLAGS) -c $< -o $@