X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=Makefile;h=23cd7f9dc749be6bbb53eba1ade06e9a3fff154f;hp=efd039fac2598340845e715b296692ffcbdf317e;hb=c14c5952a714b362436c367b30348849a61207dd;hpb=c1635d737853378d7421d2d619be499e15fb2df3 diff --git a/Makefile b/Makefile index efd039f..23cd7f9 100644 --- a/Makefile +++ b/Makefile @@ -1,33 +1,53 @@ # 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 +CC?=gcc +CCFLAGS=-std=c99 +LIBS= +UNAME_S := $(shell uname -s) +ifeq ($(UNAME_S),Linux) + LIBS=-lrt +endif + +OBJS=main.o init.o actions1.o actions2.o score.o misc.o database.o +SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO adventure.text advent.text control misc.h main.h share.h funcs.h .c.o: - gcc -O $(DBX) -c $< + $(CC) $(CCFLAGS) -O $(DBX) -c $< -advent: $(OBJS) - gcc -O $(DBX) -o advent $(OBJS) +advent: $(OBJS) database.o + $(CC) $(CCFLAGS) -O $(DBX) -o advent $(OBJS) $(LIBS) -main.o: misc.h funcs.h +main.o: main.h misc.h funcs.h database.h -init.o: misc.h main.h share.h funcs.h +init.o: misc.h main.h share.h funcs.h database.h -actions1.o: misc.h main.h share.h funcs.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 +score.o: misc.h main.h share.h database.h + +misc.o: misc.h main.h database.h + +database.o: database.h -misc.o: misc.h main.h +funcs.h: database.h + +database.c database.h: compile adventure.text + ./compile + $(CC) $(CCFLAGS) -O $(DBX) -c database.c clean: - rm -f *.o advent advent.html advent.6 + rm -f *.o advent advent.html advent.6 database.[ch] compile + cd tests; $(MAKE) --quiet clean + +check: advent + cd tests; $(MAKE) --quiet # Requires asciidoc and xsltproc/docbook stylesheets. -.asc.6: +.asc.6: advent.txt a2x --doctype manpage --format manpage $< -.asc.html: +.asc.html: advent.txt a2x --doctype manpage --format xhtml -D . $< rm -f docbook-xsl.css