From e7bfbbc35c02711929575b5bbbd6f07c9f953fd4 Mon Sep 17 00:00:00 2001 From: orangerot Date: Tue, 14 Oct 2025 14:48:54 +0200 Subject: feat: data structure for domino blocks --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 $@ $^ -- cgit v1.2.3