X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=Makefile;h=9fa7c861f3e384a717382c286bab0ea22a09bbcc;hp=bd579585aba187109109487bd85c08a35ad256d0;hb=a6b2602b83cfaae063b802bd8329602040a642de;hpb=df46df697917304a78ae9d3392ffff9b535ae5a5 diff --git a/Makefile b/Makefile index bd57958..9fa7c86 100644 --- a/Makefile +++ b/Makefile @@ -1,50 +1,77 @@ # 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.o -SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO advent.text control +VERS=1.0 + +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 +SOURCES=$(OBJS:.o=.c) compile.c advent.h funcs.h adventure.text Makefile control .c.o: - gcc -O $(DBX) -c $< + $(CC) $(CCFLAGS) $(DBX) -c $< -advent: $(OBJS) - gcc -Wall -std=c99 -O $(DBX) -o advent $(OBJS) $(LIBS) +advent: $(OBJS) database.o + $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) database.o $(LDFLAGS) $(LIBS) -main.o: main.h misc.h funcs.h database.h +main.o: advent.h funcs.h database.h -init.o: misc.h main.h share.h funcs.h database.h +init.o: advent.h funcs.h database.h -actions1.o: misc.h main.h share.h funcs.h database.h +actions1.o: advent.h funcs.h database.h -actions2.o: misc.h main.h share.h funcs.h +actions2.o: advent.h funcs.h -score.o: misc.h main.h share.h database.h +score.o: advent.h database.h -misc.o: misc.h main.h database.h +misc.o: advent.h database.h database.o: database.h +compile: compile.c + $(CC) $(CCFLAGS) -o $@ $< + +database.c database.h: compile adventure.text + ./compile + $(CC) $(CCFLAGS) $(DBX) -c database.c + +html: index.html advent.html history.html hints.html + clean: - rm -f *.o advent advent.html advent.6 adventure.data + rm -f *.o advent *.html database.[ch] compile *.gcno *.gcda + rm -f README advent.6 MANIFEST cd tests; $(MAKE) --quiet clean check: advent cd tests; $(MAKE) --quiet +.SUFFIXES: .adoc .html .6 + # Requires asciidoc and xsltproc/docbook stylesheets. -.asc.6: +.adoc.6: a2x --doctype manpage --format manpage $< -.asc.html: - a2x --doctype manpage --format xhtml -D . $< - rm -f docbook-xsl.css - -advent-$(VERS).tar.gz: $(SOURCES) advent.6 - tar --transform='s:^:advent-$(VERS)/:' --show-transformed-names -cvzf advent-$(VERS).tar.gz $(SOURCES) advent.6 +.adoc.html: + asciidoc $< +.adoc: + asciidoc $< + +# README.adoc exists because that filename is magic on GitLab. +DOCS=COPYING NEWS README.adoc TODO \ + advent.adoc history.adoc index.adoc hints.adoc advent.6 + +# Can't use GNU tar's --transform, needs to build under Alpine Linux +advent-$(VERS).tar.gz: $(SOURCES) $(DOCS) advent.6 + @ls $(SOURCES) $(DOCS) advent.1 | sed s:^:advent-$(VERS)/: >MANIFEST + @(cd ..; ln -s advent advent-$(VERS)) + (cd ..; tar -czvf advent/advent-$(VERS).tar.gz `cat advent/MANIFEST`) + @(cd ..; rm advent-$(VERS)) dist: advent-$(VERS).tar.gz -release: advent-$(VERS).tar.gz advent.html - shipper version=$(VERS) | sh -e -x - -refresh: advent.html - shipper -N -w version=$(VERS) | sh -e -x +debug: CCFLAGS += -O0 --coverage +debug: advent