summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authororangerot <orangerot@orangerot.dev>2025-10-13 21:18:09 +0200
committerorangerot <orangerot@orangerot.dev>2025-10-13 21:18:09 +0200
commitaa2be58cd30d5b9f1eb274454a9cca7a9739d62d (patch)
tree3e02bab84cba382a1b99c8e05e02b7fd70b72b78 /Makefile
parent78b29d66ebb049cc46aef8244e702ed7729b85cd (diff)
feat: factor out game code
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 77f997b..95c7f8f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
CFLAGS := -Wall -Wextra
LDFLAGS = -lglfw -lm -lGL -I./glad/include
-domino-dungeon: main.c glad/src/glad.c
+domino-dungeon: main.c game.c game.h glad/src/glad.c
$(CC) ${CFLAGS} ${LDFLAGS} -o $@ $^