From be2ada4d9387e389bf7ef115b298226370b5752a Mon Sep 17 00:00:00 2001 From: "Jason S. Ninneman" Date: Wed, 14 Jun 2017 13:48:21 -0700 Subject: [PATCH] Fix some Makefile glitches. --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 3c15a52..d1d3fd4 100644 --- a/Makefile +++ b/Makefile @@ -21,22 +21,22 @@ ifeq ($(UNAME_S),Linux) LIBS=-lrt endif -OBJS=main.o init.o actions.o score.o misc.o saveresume.o common.o newdb.o +OBJS=main.o init.o actions.o score.o misc.o saveresume.o common.o SOURCES=$(OBJS:.o=.c) dungeon.c advent.h common.h adventure.text Makefile control linenoise/linenoise.[ch] newdungeon.py .c.o: $(CC) $(CCFLAGS) $(DBX) -c $< -advent: $(OBJS) database.o linenoise.o - $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) database.o linenoise.o $(LDFLAGS) $(LIBS) +advent: $(OBJS) database.o linenoise.o newdb.o + $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) database.o newdb.o linenoise.o $(LDFLAGS) $(LIBS) main.o: advent.h database.h database.c common.h newdb.h -init.o: advent.h database.h database.c common.h +init.o: advent.h database.h database.c common.h newdb.h actions.o: advent.h database.h database.c common.h -score.o: advent.h database.h database.c common.h +score.o: advent.h database.h database.c common.h newdb.h misc.o: advent.h database.h database.c common.h newdb.h -- 2.31.1