Fix some Makefile glitches.
This commit is contained in:
parent
73c9b59507
commit
be2ada4d93
1 changed files with 5 additions and 5 deletions
10
Makefile
10
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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue