From e01184ed595423e03664db4c645fb7794dddc193 Mon Sep 17 00:00:00 2001 From: Silas Gramlich Date: Tue, 14 Oct 2025 18:57:03 +0200 Subject: [PATCH] fix: ldflags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bbccd19..1c2bb7e 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ LDFLAGS = -lglfw -lm -lGL -I./glad/include 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 $@ $^ + $(CC) ${CFLAGS} -o $@ $^ ${LDFLAGS} assets/dominos.h: src_build/domino_assets $< assets/1bit_dominoes_asset_pack/white_and_blue_dominoes.png > $@