diff options
| author | Silas Gramlich <udyvp@student.kit.edu> | 2025-10-14 18:57:03 +0200 |
|---|---|---|
| committer | Silas Gramlich <udyvp@student.kit.edu> | 2025-10-14 18:57:03 +0200 |
| commit | e01184ed595423e03664db4c645fb7794dddc193 (patch) | |
| tree | 6b08ac3ecc724a8617925274af3db42831fca40b /Makefile | |
| parent | 38e3ab041c52a38c9b3312c689a3ece436d03373 (diff) | |
fix: ldflags
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 > $@ |
