chiark / gitweb /
docs: Build not in spearate build/ subdir
[otter.git] / Makefile
1 #!/bin/sh
2 # Copyright 2020-2021 Ian Jackson and contributors to Otter
3 # SPDX-License-Identifier: AGPL-3.0-or-later
4 # There is NO WARRANTY.
5
6 # make -j8
7 # make -j8 release
8 # make -j8 shapelib
9
10 SHELL=/bin/bash
11 src=.
12
13 default: all check
14 all: debug
15 full-check: all check cargo-syntaxcheck-release shapelib
16 everything: debug doc release check bundled-sources
17
18 shapelib: templates/shapelib.html stamp/cargo.doc-otter-only
19         @echo 'Now you can visit these in your web browser:'
20         @echo '  file://$(PWD)/$<'
21         @echo '  file://$(abspath $(TARGET_DIR)/doc/otter/shapelib_toml/index.html)'
22
23 MAKEFILE_DEP ?= Makefile
24 MAKEFILE_FIND_X ?=
25 # ^ set this to "x" to debug the $rsrcs rune
26
27 #---------- funky macros etc. ----------
28
29 cr = $(addprefix --,$(filter-out debug,$1))
30 rsrcs = $(shell $(foreach x,$(MAKEFILE_FIND_X),set -$x;)\
31     find -H $1 \( -name Cargo.toml -o -name Cargo.lock -o -name Cargo.lock.example -o -name \*.rs \) \! -path '*/build/*' )
32 stamp=@mkdir -p stamp; touch $@
33
34 BUNDLED_SOURCES_LIT = README.md LICENCE
35 BUNDLED_SOURCES_FILES = index.html $(BUNDLED_SOURCES_LIT)
36 BUNDLED_SOURCES_LINKS += $(BUNDLED_SOURCES_LIT) otter/
37 BUNDLED_SOURCES += $(BUNDLED_SOURCES_FILES)
38
39 #---------- programs and config variables ----------
40
41 CARGO ?= cargo
42 TARGET_DIR ?= target
43
44 USVG ?= usvg
45 USVG_OPTIONS = "--sans-serif-family=DejaVu Sans"
46
47 WASM_BINDGEN = $(TARGET_DIR)/debug/wasm-bindgen
48 WASM_BINDGEN_OPTIONS =                                          \
49         --remove-name-section --remove-producers-section        \
50         --typescript --no-modules                               \
51
52 BUNDLE_SOURCES ?= bundle-rust-sources
53
54 SPHINXBUILD   = sphinx-build
55
56 ifndef INKSCAPE_EXTENSIONS
57 INKSCAPE ?= inkscape
58 INKSCAPE_EXTENSIONS := $(shell $(INKSCAPE) -x)
59 endif
60 RECOLOUR_SVG ?= $(INKSCAPE_EXTENSIONS)/color_replace.py
61
62 DEPLOY_ARCH=x86_64-unknown-linux-musl
63 DEPLOY_RELEASE=debug
64 DEPLOY_TARGET_DIR=$(TARGET_DIR)/$(addsuffix /,$(DEPLOY_ARCH))$(DEPLOY_RELEASE)
65 DEPLOYED_BRANCH=deployed
66
67 #---------- nailing-cargo ----------
68
69 ifneq (,$(wildcard ../Cargo.nail))
70
71 NAILING_CARGO = nailing-cargo
72 CARGO = $(NAILING_CARGO)
73 BUILD_SUBDIR ?= ../Build
74 TARGET_DIR = $(BUILD_SUBDIR)/$(notdir $(PWD))/target
75
76 NAILING_CARGO_JUST_RUN ?= $(NAILING_CARGO) --just-run -q ---
77 BUNDLE_SOURCES_CMD ?= $(NAILING_CARGO) --- $(BUNDLE_SOURCES)
78 USVG_CMD ?= $(NAILING_CARGO_JUST_RUN) $(USVG)
79 WASM_BINDGEN_CLI_CARGO_OPTS ?= --subcommand-props=!manifest-path
80
81 clean-nailing:
82         $(NAILING_CARGO_JUST_RUN) \
83  sh -c 'cd "$1"; find -mindepth 1 -maxdepth 1 -print0 | xargs -0r rm -rf --' \
84                 $(abspath $(BUILD_SUBDIR)/$(notdir $(PWD)))
85
86 else
87 clean-nailing:
88 endif # Cargo.nail
89
90 BUILD_SUBDIR ?= ../Build
91 BUNDLE_SOURCES_CMD ?= $(BUNDLE_SOURCES)
92 USVG_CMD ?= $(USVG)
93
94 WASM_PACKED=$(TARGET_DIR)/packed-wasm
95
96 #---------- local programs ----------
97
98 define lp
99 $(if $(wildcard $(BUILD_SUBDIR)/$2),
100 $(shell echo >&2 'Makefile: lp: Using program $4 from $(BUILD_SUBDIR)/$2')
101 $1 := $(abspath $(BUILD_SUBDIR)/$2/target/$3/$4)
102 $(abspath $(BUILD_SUBDIR)/$2/target/$3/$4):; cd ../$2 && $$(CARGO) build $(call cr,$3)
103 BUNDLED_SOURCES_DIRS += $2
104 BUNDLED_SOURCES_LINKS += $2/
105 )
106 endef
107
108 $(eval $(call lp,BUNDLE_SOURCES,bundle-sources,debug,bundle-rust-sources))
109 $(eval $(call lp,USVG,resvg,release,usvg))
110
111 #---------- variables defining bits of source etc. ----------
112
113 PROGRAMS=daemon-otter otter
114
115 WASM_ASSETS := $(addprefix otter_wasm,.js _bg.wasm)
116 WASM_OUTPUTS := $(addprefix otter_wasm,.d.ts)
117
118 TS_SRCS= script
119 TS_SRC_FILES= \
120         $(addprefix templates/,$(addsuffix .ts,$(TS_SRCS))) \
121         webassembly-types/webassembly.d.ts \
122         $(WASM_PACKED)/otter_wasm.d.ts
123
124 LITFILES= LICENCE AGPLv3
125 TXTFILES= CC-BY-SA-3.0 CC-BY-SA-4.0
126
127 FILEASSETS = $(addprefix templates/, libre shapelib.html script.js \
128                         $(LITFILES) $(TXTFILES)) \
129                 $(wildcard templates/*.tera)
130
131 WASM := wasm32-unknown-unknown
132 # ^ todo: Is this still right after
133 #     Use correct ABI for wasm32 by default
134 #     https://github.com/rust-lang/rust/pull/79998
135 # ?  But maybe it doesn't matter since we're very conservative and
136 # only pass JsValue and a few strings across the WASM ABI.
137
138 #---------- toplevel aggregate targets ----------
139
140 check: stamp/cargo.check at wdt
141         @echo 'All tests passed.'
142
143 doc: cargo-doc sphinx-doc
144
145 debug release:: %: stamp/cargo.% assets libraries extra-%
146
147 cargo: cargo-debug cargo-wasm-release
148
149 cargo-debug cargo-release cargo-check cargo-doc \
150 cargo-wasm-debug cargo-wasm-release:: \
151 cargo-%: stamp/cargo.%
152
153 cargo-wasm: cargo-wasm-release
154
155 wasm: stamp/wasm-bindgen
156
157 assets: js stamp/wasm-bindgen $(FILEASSETS)
158
159 js: templates/script.js
160
161 extra-debug:
162 extra-release: bundled-sources
163
164 cargo-syntaxcheck: cargo-syntaxcheck-host cargo-syntaxcheck-wasm
165 cargo-syntaxcheck-host:
166         $(CARGO) check --workspace
167 cargo-syntaxcheck-wasm:
168         $(CARGO) check --target $(WASM) -p otter-wasm --release
169 cargo-syntaxcheck-release:
170         $(CARGO) check --workspace --release
171
172 #---------- cargo ----------
173
174 DR=debug release
175 CARGOES=$(foreach t, wasm-,$(addprefix $t,check $(DR)))
176
177 $(addprefix stamp/cargo.,$(DR)):: \
178 stamp/cargo.%: $(call rsrcs,. ! -path './wasm/*')
179         $(CARGO) build --workspace $(call cr,$*) -p otter -p otter-daemon
180         $(stamp)
181
182 $(TARGET_DIR)/debug/%: $(call rsrcs, ! -path './wasm/*')
183         $(CARGO) build --workspace -p otter --bin $*
184
185 stamp/cargo.wasm-bindgen: $(call rsrcs, ! -name \*.rs)
186         $(CARGO) $(WASM_BINDGEN_CLI_CARGO_OPTS) build --target-dir=target \
187                 --manifest-path=$(abspath wasm/Cargo.toml) -p wasm-bindgen-cli
188         $(stamp)
189
190 stamp/cargo.check: $(call rsrcs,.)
191         $(CARGO) test --workspace
192         $(stamp)
193
194 stamp/cargo-at.debug: $(call rsrcs,.)
195         $(CARGO) build --workspace $(call cr,$*) -p otter-api-tests
196         $(stamp)
197
198 stamp/cargo-wdt.debug: $(call rsrcs,.)
199         $(CARGO) build --workspace $(call cr,$*) -p otter-webdriver-tests
200         $(stamp)
201
202 stamp/cargo.doc: $(call rsrcs,.)
203         $(CARGO) doc $(CARGO_DOC_OPTS) --workspace 2>&1 |egrep -vf .cargo-doc-suppress-errors
204         $(stamp)
205
206 stamp/cargo.doc-otter-only: $(call rsrcs,.)
207         $(CARGO) doc $(CARGO_DOC_OPTS) --workspace -p otter --no-deps
208         $(stamp)
209
210 $(addprefix stamp/cargo.wasm-,$(DR)):: \
211 stamp/cargo.wasm-%: $(call rsrcs, base wasm Cargo.*)
212         $(CARGO) build --target $(WASM) -p otter-wasm $(call cr,$*)
213         $(stamp)
214
215 stamp/cargo.deploy-build: $(call rsrcs,.)
216         $(CARGO) -T$(DEPLOY_ARCH) build $(call cr,$(DEPLOY_RELEASE)) -p otter -p otter-daemon
217         $(stamp)
218
219 #---------- sphnix ----------
220
221 sphinx-doc: docs/html/index.html
222
223 docs/html/index.html: docs/conf.py $(wildcard docs/*.md docs/*.rst)
224         $(SPHINXBUILD) -M html docs docs $(SPHINXOPTS)
225
226 #---------- wasm ----------
227
228 $(addprefix $(WASM_PACKED)/,$(WASM_ASSETS) $(WASM_OUTPUTS)): stamp/wasm-bindgen
229 stamp/wasm-bindgen: stamp/cargo.wasm-bindgen stamp/cargo.wasm-release
230         $(NAILING_CARGO_JUST_RUN) $(abspath $(WASM_BINDGEN)) \
231                 $(WASM_BINDGEN_OPTIONS) --out-dir target/packed-wasm \
232                 target/$(WASM)/release/otter_wasm.wasm
233         $(stamp)
234
235 #---------- bundle-sources ----------
236
237 BUNDLED_SOURCES_DIRS += otter
238
239 bundled-sources:: $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS))
240
241 TARGET_BUNDLED=$(TARGET_DIR)/bundled-sources
242
243 $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS)): \
244 bundled-sources/%: $(wildcard $(BUNDLE_SOURCES))
245         set -e; d=$(abspath $(TARGET_BUNDLED)); \
246         $(NAILING_CARGO_JUST_RUN) mkdir -p $$d; \
247         $(if $(filter-out otter,$*), cd ../$*;) \
248         $(BUNDLE_SOURCES_CMD) --output $$d/$*
249
250 bundled-sources:: $(addprefix $(TARGET_BUNDLED)/, $(BUNDLED_SOURCES_FILES))
251
252 $(addprefix $(TARGET_BUNDLED)/, $(BUNDLED_SOURCES_LIT)): $(TARGET_BUNDLED)/%: %
253         $(NAILING_CARGO_JUST_RUN) cp $(abspath $(src))/$< $(abspath $@)
254
255 $(TARGET_BUNDLED)/index.html: bundled-sources-make-index $(MAKEFILE_DEP)
256         $(NAILING_CARGO_JUST_RUN) sh -ec '                      \
257                 cd $(abspath $(src)); mkdir -p $(dir $@);       \
258                 ./$< >$@.tmp $(BUNDLED_SOURCES_LINKS);          \
259                 mv -f $@.tmp $@;                                \
260         '
261
262 bundled-sources::
263         @echo Bundled sources.
264
265 #---------- svg processing ----------
266
267 LIBRARIES ?= $(basename $(wildcard library/*.toml))
268
269 include $(addsuffix /files.make, $(LIBRARIES))
270
271 USVG_PROCESSOR = usvg-processor
272 LIBRARY_PROCESS_SVG = ./$(USVG_PROCESSOR) $@ $(wordlist 1,2,$^) '$(USVG_CMD) $(USVG_OPTIONS)'
273 $(LIBRARY_FILES): $(USVG_PROCESSOR) $(USVG_BINARY) $(MAKEFILE_DEP)
274
275 # actual command for each of $(LIBRARY_FILES) is in one of the files.make
276
277 library/%/files.make: media-scraper library/%.toml
278         ./$< --offline library/$*.toml
279
280 #---------- typescript ----------
281
282 templates/%.js: tsc-wrap tsconfig.json
283         ./tsc-wrap $@ tsconfig.json $(filter %.ts,$^)
284
285 templates/script.js: $(TS_SRC_FILES) stamp/wasm-bindgen
286
287 #---------- other templates ----------
288
289 $(addprefix templates/,$(LITFILES)): templates/%: %
290         cp $< $@.new && mv -f $@.new $@
291
292 $(addprefix templates/,$(TXTFILES)): templates/%: %.txt
293         cp $< $@.new && mv -f $@.new $@
294
295 libraries: $(LIBRARY_FILES)
296
297 templates/shapelib.html: $(TARGET_DIR)/debug/otterlib $(LIBRARY_FILES)
298         $(NAILING_CARGO_JUST_RUN) $(abspath $<) \
299         --libs '$(addprefix $(PWD)/, $(addsuffix .toml, $(LIBRARIES)))' \
300                 preview >$@.tmp && mv -f $@.tmp $@
301
302 #---------- webdriver tests (wdt) ----------
303
304 AT_TESTS := $(basename $(notdir $(wildcard apitest/at-*.rs)))
305 WDT_TESTS := $(basename $(notdir $(wildcard wdriver/wdt-*.rs)))
306
307 WDT_LANDSCAPE_TESTS = wdt-altergame
308
309 at:     $(foreach f, $(AT_TESTS), stamp/$f.check)
310
311 wdt:    $(foreach f, $(WDT_TESTS), stamp/$f.check) \
312         $(foreach f, $(WDT_LANDSCAPE_TESTS), stamp/$f.lcheck) \
313
314 RUNTEST_DEPS =  apitest/run1 stamp/cargo.debug $(FILEASSETS) \
315                 $(wildcard libraries/*.toml) $(LIBRARY_FILES)
316
317 AT_DEPS =       $(filter-out templates/script.js, $(RUNTEST_DEPS)) \
318                 stamp/cargo-at.debug
319
320 WDT_DEPS =      $(RUNTEST_DEPS) \
321                 stamp/cargo-wdt.debug
322
323 AT_WDT_RUN = $(NAILING_CARGO_JUST_RUN) $(abspath $<)
324
325 AT_RUN = $(AT_WDT_RUN) $(basename $(notdir $@))
326 WDT_RUN = $(AT_WDT_RUN) wdriver --test=$(basename $(notdir $@))
327
328 for-at:                 $(AT_DEPS)
329 stamp/at-%.check:       $(AT_DEPS)
330         $(AT_RUN)
331         $(stamp)
332
333 for-wdt:                $(WDT_DEPS)
334 stamp/wdt-%.check:      $(WDT_DEPS)
335         $(WDT_RUN)
336         $(stamp)
337
338 stamp/wdt-%.lcheck:     $(WDT_DEPS)
339         $(WDT_RUN) --as-if=lwdt-$* --layout=Landscape
340         $(stamp)
341
342 #---------- deployment ----------
343
344 DEPLOY_USER=ian@login.chiark.greenend.org.uk
345 DEPLOY_BASE=$(DEPLOY_USER):/volatile/Otter
346 DEPLOY_FINISH=/home/Otter/etc/deploy-finish
347
348 deploy: stamp/cargo.deploy-build bundled-sources assets libraries
349         rsync -zv --progress $(addprefix $(DEPLOY_TARGET_DIR)/,$(PROGRAMS)) $(DEPLOY_BASE)/bin/
350         rsync -rv --progress $(TARGET_DIR)/bundled-sources/. $(DEPLOY_BASE)/bundled-sources
351         rsync -r README.md $(DEPLOY_BASE)/.
352         rsync -r --delete --exclude=\*~ library specs $(DEPLOY_BASE)/.
353         rsync -r $(FILEASSETS) $(addprefix $(WASM_PACKED)/, $(WASM_ASSETS)) \
354                 $(DEPLOY_BASE)/assets/
355         rsync -r nwtemplates/*.tera $(DEPLOY_BASE)/nwtemplates/
356         ssh -o BatchMode=true $(DEPLOY_USER) $(DEPLOY_FINISH)
357         git branch -f $(DEPLOYED_BRANCH)
358         -git push origin master
359         -git push chiark master
360
361 #$(DEPLOY_BASE)/bundled-sources
362
363 #---------- clean ----------
364
365 clean-for-retest:
366         rm -f templates/script.js library/*/*.usvg stamp/*
367         rm -rf $(LIBRARY_CLEAN)
368         find * -name '*~' -print0 | xargs -0r rm --
369
370 clean: clean-nailing clean-for-retest
371         rm -rf target
372         $(NAILING_CARGO_JUST_RUN) rm -rf target