Isolate the grotty save/resume code. Most of it will soon go away.
[open-adventure.git] / Makefile
1 # Makefile for the open-source release of adventure 2.5
2
3 # Note: If you're building from the repository rather than the source tarball,
4 # do this to get the linenoise library where you can use it:
5 #
6 # git submodule update --recursive --remote --init
7 #
8 # Therafter, you can update it like this:
9 #
10 # git submodule update --recursive --remote
11 #
12 # but this should seldom be necessary as that library is pretty stable.
13
14 VERS=1.0
15
16 CC?=gcc
17 CCFLAGS+=-std=c99 -D _DEFAULT_SOURCE
18 LIBS=
19 UNAME_S := $(shell uname -s)
20 ifeq ($(UNAME_S),Linux)
21         LIBS=-lrt
22 endif
23
24 OBJS=main.o init.o actions.o score.o misc.o saveresume.o
25 SOURCES=$(OBJS:.o=.c) dungeon.c advent.h sizes.h adventure.text Makefile control linenoise/linenoise.[ch]
26
27 .c.o:
28         $(CC) $(CCFLAGS) $(DBX) -c $<
29
30 advent: $(OBJS) database.o linenoise.o
31         $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) database.o linenoise.o $(LDFLAGS) $(LIBS)
32
33 main.o:         advent.h database.h database.c sizes.h
34
35 init.o:         advent.h database.h database.c sizes.h
36
37 actions.o:      advent.h database.h database.c sizes.h
38
39 score.o:        advent.h database.h database.c sizes.h
40
41 misc.o:         advent.h database.h database.c sizes.h
42
43 saveresume.o:   advent.h database.h database.c sizes.h
44
45 database.o:     database.c database.h sizes.h
46         $(CC) $(CCFLAGS) $(DBX) -c database.c
47
48 database.c database.h: dungeon
49         ./dungeon
50
51 linenoise.o:    linenoise/linenoise.h
52         $(CC) $(CCFLAGS) $(DBX) -c linenoise/linenoise.c
53
54 dungeon: dungeon.c
55         $(CC) $(CCFLAGS) -o $@ $<
56
57 clean:
58         rm -f *.o advent *.html database.[ch] dungeon *.gcno *.gcda
59         rm -f README advent.6 MANIFEST *.tar.gz
60         rm -f *~
61         cd tests; $(MAKE) --quiet clean
62
63 check: advent
64         cd tests; $(MAKE) --quiet
65
66 .SUFFIXES: .adoc .html .6
67
68 # Requires asciidoc and xsltproc/docbook stylesheets.
69 .adoc.6:
70         a2x --doctype manpage --format manpage $<
71 .adoc.html:
72         asciidoc $<
73 .adoc:
74         asciidoc $<
75
76 html: advent.html history.html hints.html
77
78 # README.adoc exists because that filename is magic on GitLab.
79 DOCS=COPYING NEWS README.adoc TODO advent.adoc history.adoc hints.adoc advent.6
80 TESTFILES=tests/*.log tests/*.chk tests/README tests/decheck tests/Makefile
81
82 # Can't use GNU tar's --transform, needs to build under Alpine Linux.
83 # This is a requirement for testing dist in GitLab's CI pipeline
84 advent-$(VERS).tar.gz: $(SOURCES) $(DOCS)
85         @find $(SOURCES) $(DOCS) $(TESTFILES) -print | sed s:^:advent-$(VERS)/: >MANIFEST
86         @(ln -s . advent-$(VERS))
87         (tar -T MANIFEST -czvf advent-$(VERS).tar.gz)
88         @(rm advent-$(VERS))
89
90 release: advent-$(VERS).tar.gz advent.html history.html hints.html
91         shipper version=$(VERS) | sh -e -x
92
93 refresh: advent.html
94         shipper -N -w version=$(VERS) | sh -e -x
95
96 dist: advent-$(VERS).tar.gz
97
98 debug: CCFLAGS += -O0 --coverage
99 debug: advent