Generate initializer from YAML for Section 9 bits.
[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 # You will also need Python 3 YAML.  Under Debian or ubuntu:
15 #
16 # apt-get install python3-yaml
17 #
18 # If you have pip installed,
19 #
20 # pip3 install PyYAML
21 #
22 # If you are using MacPorts on OS X:
23 # port install py3{5,6}-yaml as appropriate for your Python 3 version.
24 #
25 # To build with save/resume disabled, pass CCFLAGS="-D ADVENT_NOSAVE"
26
27 .PHONY: debug indent release refresh dist linty html clean
28
29 VERS=1.0
30
31 CC?=gcc
32 CCFLAGS+=-std=c99 -D _DEFAULT_SOURCE -Wpedantic -O2
33 LIBS=
34 UNAME_S := $(shell uname -s)
35 ifeq ($(UNAME_S),Linux)
36         LIBS=-lrt
37 endif
38
39 OBJS=main.o init.o actions.o score.o misc.o saveresume.o common.o
40 SOURCES=$(OBJS:.o=.c) dungeon.c advent.h common.h adventure.text Makefile control linenoise/linenoise.[ch] newdungeon.py
41
42 .c.o:
43         $(CC) $(CCFLAGS) $(DBX) -c $<
44
45 advent: $(OBJS) linenoise.o newdb.o
46         $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) newdb.o linenoise.o $(LDFLAGS) $(LIBS)
47
48 main.o:         advent.h database.h common.h newdb.h
49
50 init.o:         advent.h database.h common.h newdb.h
51
52 actions.o:      advent.h database.h common.h newdb.h
53
54 score.o:        advent.h database.h common.h newdb.h
55
56 misc.o:         advent.h database.h common.h newdb.h
57
58 saveresume.o:   advent.h database.h common.h newdb.h
59
60 common.o:       common.h
61
62 newdb.o:        newdb.c newdb.h
63         $(CC) $(CCFLAGS) $(DBX) -c newdb.c
64
65 database.h: dungeon
66         ./dungeon
67
68 newdb.c newdb.h: newdungeon.py adventure.yaml
69         python3 newdungeon.py
70
71 linenoise.o:    linenoise/linenoise.h
72         $(CC) -c linenoise/linenoise.c
73
74 dungeon: dungeon.o common.o
75         $(CC) $(CCFLAGS) -o $@ dungeon.o common.o
76
77 clean:
78         rm -f *.o advent *.html database.h dungeon *.gcno *.gcda
79         rm -f newdb.c newdb.h
80         rm -f README advent.6 MANIFEST *.tar.gz
81         rm -f *~
82         rm -f .*~
83         cd tests; $(MAKE) --quiet clean
84
85 check: advent
86         cd tests; $(MAKE) --quiet
87
88 .SUFFIXES: .adoc .html .6
89
90 # Requires asciidoc and xsltproc/docbook stylesheets.
91 .adoc.6:
92         a2x --doctype manpage --format manpage $<
93 .adoc.html:
94         asciidoc $<
95 .adoc:
96         asciidoc $<
97
98 html: advent.html history.html hints.html
99
100 # README.adoc exists because that filename is magic on GitLab.
101 DOCS=COPYING NEWS README.adoc TODO advent.adoc history.adoc notes.adoc hints.adoc advent.6
102 TESTFILES=tests/*.log tests/*.chk tests/README tests/decheck tests/Makefile
103
104 # Can't use GNU tar's --transform, needs to build under Alpine Linux.
105 # This is a requirement for testing dist in GitLab's CI pipeline
106 advent-$(VERS).tar.gz: $(SOURCES) $(DOCS)
107         @find $(SOURCES) $(DOCS) $(TESTFILES) -print | sed s:^:advent-$(VERS)/: >MANIFEST
108         @(ln -s . advent-$(VERS))
109         (tar -T MANIFEST -czvf advent-$(VERS).tar.gz)
110         @(rm advent-$(VERS))
111
112 indent:
113         astyle -n -A3 --pad-header --min-conditional-indent=1 --pad-oper *.c
114
115 release: advent-$(VERS).tar.gz advent.html history.html hints.html notes.html
116         shipper version=$(VERS) | sh -e -x
117
118 refresh: advent.html notes.html history.html
119         shipper -N -w version=$(VERS) | sh -e -x
120
121 dist: advent-$(VERS).tar.gz
122
123 linty: CCFLAGS += -W
124 linty: CCFLAGS += -Wall
125 linty: CCFLAGS += -Wextra
126 linty: CCFLAGS += -Wundef
127 linty: CCFLAGS += -Wstrict-prototypes
128 linty: CCFLAGS += -Wmissing-prototypes
129 linty: CCFLAGS += -Wmissing-declarations
130 linty: CCFLAGS += -Wshadow
131 linty: CCFLAGS += -Wfloat-equal
132 linty: CCFLAGS += -Wcast-align
133 linty: CCFLAGS += -Wwrite-strings
134 linty: CCFLAGS += -Waggregate-return
135 linty: CCFLAGS += -Wcast-qual
136 linty: CCFLAGS += -Wswitch-enum
137 linty: CCFLAGS += -Wwrite-strings
138 linty: CCFLAGS += -Wunreachable-code
139 linty: CCFLAGS += -Winit-self
140 linty: CCFLAGS += -Wpointer-arith
141 linty: advent
142
143 debug: CCFLAGS += -O0 --coverage -ggdb
144 debug: linty