Add database.o to the linker list.
authorJason S. Ninneman <jsn@mbar.us>
Thu, 8 Jun 2017 07:08:11 +0000 (00:08 -0700)
committerJason S. Ninneman <jsn@mbar.us>
Thu, 8 Jun 2017 07:15:03 +0000 (00:15 -0700)
Makefile

index ab304b8113f90adfb86fbb460af11966bd07bc30..c78e4cdf2b19b480c6fa9b24f6a864a2aae5276e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ SOURCES=$(OBJS:.o=.c) dungeon.c advent.h funcs.h sizes.h adventure.text Makefile
        $(CC) $(CCFLAGS) $(DBX) -c $<
 
 advent:        $(OBJS) database.o linenoise.o
-       $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) database.o $(LDFLAGS) $(LIBS)
+       $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) database.o linenoise.o $(LDFLAGS) $(LIBS)
 
 main.o:                advent.h funcs.h database.h database.c sizes.h