Simplify build: nested makefiles considered harmful.

This commit is contained in:
Eric S. Raymond 2017-05-29 01:33:59 -04:00
parent 7e82c2f910
commit 5ae76995d2
10 changed files with 18 additions and 32 deletions

View file

@ -1,31 +1,34 @@
# Makefile for the open-source release of adventure 2.5
LIBS=-lrt
OBJS=main.o init.o actions1.o actions2.o score.o misc.o database/database.o
OBJS=main.o init.o actions1.o actions2.o score.o misc.o database.o
SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO advent.text control
.c.o:
gcc -O $(DBX) -c $<
advent: $(OBJS) database
advent: $(OBJS)
gcc -Wall -std=c99 -O $(DBX) -o advent $(OBJS) $(LIBS)
main.o: main.h misc.h funcs.h database/database.h
main.o: main.h misc.h funcs.h database.h
init.o: misc.h main.h share.h funcs.h database/database.h
init.o: misc.h main.h share.h funcs.h database.h
actions1.o: misc.h main.h share.h funcs.h database/database.h
actions1.o: misc.h main.h share.h funcs.h database.h
actions2.o: misc.h main.h share.h funcs.h
score.o: misc.h main.h share.h database/database.h
score.o: misc.h main.h share.h database.h
misc.o: misc.h main.h database/database.h
misc.o: misc.h main.h database.h
database.c database.h: compile
./compile
gcc $(OPTIONS) -O $(DBX) -c database.c
clean:
rm -f *.o advent advent.html advent.6 adventure.data
rm -f *.o advent advent.html advent.6 database.[ch]
cd tests; $(MAKE) --quiet clean
cd database; $(MAKE) clean
check: advent
cd tests; $(MAKE) --quiet