summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authororangerot <orangerot@orangerot.dev>2025-10-14 14:48:54 +0200
committerorangerot <orangerot@orangerot.dev>2025-10-14 14:48:54 +0200
commite7bfbbc35c02711929575b5bbbd6f07c9f953fd4 (patch)
tree0b3704f5f04f0892c5807325c1c7892a398e05f2 /Makefile
parent1be303f6f6927165f1fb804b790763a95529baed (diff)
feat: data structure for domino blocks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3f40477..bbccd19 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,8 @@
-CFLAGS := -Wall -Wextra
+CFLAGS := -ggdb -Wall -Wextra
+# -fsanitize=address
LDFLAGS = -lglfw -lm -lGL -I./glad/include
-SOURCES = main.c game.c game.h glad/src/glad.c assets/dominos.h
+SOURCES = main.c game.c game.h glad/src/glad.c assets/dominos.h domino.c domino.h
domino-dungeon: ${SOURCES}
$(CC) ${CFLAGS} ${LDFLAGS} -o $@ $^