X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=Makefile;h=84477c8b62f9c93af575811b46e45c6cfb84493d;hb=1ea2c866412aad2404a01a7c3d99efd728acf4b2;hp=efd039fac2598340845e715b296692ffcbdf317e;hpb=c1635d737853378d7421d2d619be499e15fb2df3;p=open-adventure.git diff --git a/Makefile b/Makefile index efd039f..84477c8 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,16 @@ # Makefile for the open-source release of adventure 2.5 -OBJS=main.o init.o actions1.o actions2.o score.o misc.o datime.o -SOURCES=$(OBJS:.o=.c) COPYING NEWS README advent.text control +LIBS=-lrt +OBJS=main.o init.o actions1.o actions2.o score.o misc.o +SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO advent.text control .c.o: gcc -O $(DBX) -c $< advent: $(OBJS) - gcc -O $(DBX) -o advent $(OBJS) + gcc -std=c99 -O $(DBX) -o advent $(OBJS) $(LIBS) -main.o: misc.h funcs.h +main.o: main.h misc.h funcs.h init.o: misc.h main.h share.h funcs.h @@ -22,7 +23,11 @@ score.o: misc.h main.h share.h misc.o: misc.h main.h clean: - rm -f *.o advent advent.html advent.6 + rm -f *.o advent advent.html advent.6 adventure.data + cd tests; $(MAKE) --quiet clean + +check: advent + cd tests; $(MAKE) --quiet # Requires asciidoc and xsltproc/docbook stylesheets. .asc.6: