From aa2be58cd30d5b9f1eb274454a9cca7a9739d62d Mon Sep 17 00:00:00 2001 From: orangerot Date: Mon, 13 Oct 2025 21:18:09 +0200 Subject: feat: factor out game code --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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 $@ $^ -- cgit v1.2.3