X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=Makefile;h=9a5d05f5a7ef2b40d94b442a7bc8bc6d3ba89d2c;hb=da27ae1932d1311887ad3a677b10b87610e31854;hp=c5ce654163a0bef2d33b757ba7fe692775a4e4c1;hpb=aca6d79087dc9ef6f9f1b4e1d2ef0d25d405db9b;p=open-adventure.git diff --git a/Makefile b/Makefile index c5ce654..9a5d05f 100644 --- a/Makefile +++ b/Makefile @@ -36,64 +36,58 @@ ifeq ($(UNAME_S),Linux) LIBS=-lrt endif -OBJS=main.o init.o actions.o score.o misc.o saveresume.o common.o -CHEAT_OBJS=cheat.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 +OBJS=main.o init.o actions.o score.o misc.o saveresume.o +CHEAT_OBJS=cheat.o init.o actions.o score.o misc.o saveresume.o +SOURCES=$(OBJS:.o=.c) advent.h adventure.yaml Makefile control linenoise/linenoise.[ch] make_dungeon.py .c.o: $(CC) $(CCFLAGS) $(DBX) -c $< -advent: $(OBJS) linenoise.o newdb.o - $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) newdb.o linenoise.o $(LDFLAGS) $(LIBS) +advent: $(OBJS) linenoise.o dungeon.o + $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) dungeon.o linenoise.o $(LDFLAGS) $(LIBS) -main.o: advent.h database.h common.h newdb.h +main.o: advent.h dungeon.h -init.o: advent.h database.h common.h newdb.h +init.o: advent.h dungeon.h -actions.o: advent.h database.h common.h newdb.h +actions.o: advent.h dungeon.h -score.o: advent.h database.h common.h newdb.h +score.o: advent.h dungeon.h -misc.o: advent.h database.h common.h newdb.h +misc.o: advent.h dungeon.h -cheat.o: advent.h database.h common.h newdb.h +cheat.o: advent.h dungeon.h -saveresume.o: advent.h database.h common.h newdb.h +saveresume.o: advent.h dungeon.h -common.o: common.h +dungeon.o: dungeon.c dungeon.h + $(CC) $(CCFLAGS) $(DBX) -c dungeon.c -dungeon.o: common.h newdb.h - -newdb.o: newdb.c newdb.h - $(CC) $(CCFLAGS) $(DBX) -c newdb.c - -database.h: dungeon - ./dungeon - -newdb.c newdb.h: newdungeon.py adventure.yaml - python3 newdungeon.py +dungeon.c dungeon.h: make_dungeon.py adventure.yaml + python3 make_dungeon.py linenoise.o: linenoise/linenoise.h $(CC) $(CCFLAGS) -c linenoise/linenoise.c -dungeon: dungeon.o common.o - $(CC) $(CCFLAGS) -o $@ dungeon.o common.o - clean: - rm -f *.o advent *.html database.h dungeon *.gcno *.gcda - rm -f newdb.c newdb.h + rm -f *.o advent cheat *.html *.gcno *.gcda + rm -f dungeon.c dungeon.h rm -f README advent.6 MANIFEST *.tar.gz rm -f *~ rm -f .*~ + rm -rf coverage advent.info cd tests; $(MAKE) --quiet clean -cheat: $(CHEAT_OBJS) linenoise.o newdb.o - $(CC) $(CCFLAGS) $(DBX) -o cheat $(CHEAT_OBJS) linenoise.o newdb.o $(LDFLAGS) $(LIBS) +cheat: $(CHEAT_OBJS) linenoise.o dungeon.o + $(CC) $(CCFLAGS) $(DBX) -o cheat $(CHEAT_OBJS) linenoise.o dungeon.o $(LDFLAGS) $(LIBS) check: advent cheat cd tests; $(MAKE) --quiet +coverage: debug cheat + cd tests; $(MAKE) coverage --quiet + .SUFFIXES: .adoc .html .6 # Requires asciidoc and xsltproc/docbook stylesheets. @@ -152,3 +146,5 @@ linty: advent debug: CCFLAGS += -O0 --coverage -ggdb debug: linty debug: cheat + +