From 495f4afbe02fe5b7dd37d5c654ec123a031cdf3e Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sun, 4 Jun 2017 16:40:35 -0400 Subject: [PATCH] Fix a slightly incorrect deoendency. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 67e321b..62c333f 100644 --- a/Makefile +++ b/Makefile @@ -10,14 +10,14 @@ ifeq ($(UNAME_S),Linux) LIBS=-lrt endif -OBJS=main.o init.o actions1.o actions2.o score.o misc.o database.o +OBJS=main.o init.o actions1.o actions2.o score.o misc.o SOURCES=$(OBJS:.o=.c) compile.c advent.h funcs.h adventure.text Makefile control .c.o: $(CC) $(CCFLAGS) $(DBX) -c $< advent: $(OBJS) database.o - $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) $(LDFLAGS) $(LIBS) + $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) database.o $(LDFLAGS) $(LIBS) main.o: advent.h funcs.h database.h -- 2.31.1