From: Jason S. Ninneman Date: Thu, 8 Jun 2017 07:08:11 +0000 (-0700) Subject: Add database.o to the linker list. X-Git-Tag: 1.1~522 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=955032bd24b022664eb0dc67c2a66cc45fabb6fa Add database.o to the linker list. --- diff --git a/Makefile b/Makefile index ab304b8..c78e4cd 100644 --- 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