summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorcitrons <citrons@mondecitronne.com>2023-10-12 16:32:32 -0500
committercitrons <citrons@mondecitronne.com>2023-10-12 16:32:32 -0500
commitd1ba7e3713cd999635104591295d1923235c9289 (patch)
treef639da0345b422b2702e4132ca5315669be7d240 /Makefile
parent818732592abbf3b2a2c8e3d66cdd056a104bade1 (diff)
make error handling worse
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5ffa84a..1bf7aae 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ SDL_HEADERS=/usr/include/SDL2
CFLAGS=-g -Wall -pedantic -std=c99 $$(sdl2-config --cflags)
LFLAGS=$$(sdl2-config --libs)
-findgame: main.o world.o random.o generator.o save.o
+findgame: main.o world.o random.o generator.o save.o die.o
$(CC) -o $@ $^ $(LFLAGS)
main.o: world.h random.h save.h