chiark / gitweb /
docs: sphinx-doc target: Print file: url
[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 sphinx-doc
16 everything: debug doc release check bundled-sources
17
18 shapelib: templates/shapelib.html stamp/cargo.doc-otter-only
19         @echo 'Shape library preview and docs can now be found here:'
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         @echo 'Documentation can now be found here:'
223         @echo '  file://$(PWD)/$<'
224
225 docs/html/index.html: docs/conf.py $(wildcard docs/*.md docs/*.rst)
226         $(SPHINXBUILD) -M html docs docs $(SPHINXOPTS)
227
228 #---------- wasm ----------
229
230 $(addprefix $(WASM_PACKED)/,$(WASM_ASSETS) $(WASM_OUTPUTS)): stamp/wasm-bindgen
231 stamp/wasm-bindgen: stamp/cargo.wasm-bindgen stamp/cargo.wasm-release
232         $(NAILING_CARGO_JUST_RUN) $(abspath $(WASM_BINDGEN)) \
233                 $(WASM_BINDGEN_OPTIONS) --out-dir target/packed-wasm \
234                 target/$(WASM)/release/otter_wasm.wasm
235         $(stamp)
236
237 #---------- bundle-sources ----------
238
239 BUNDLED_SOURCES_DIRS += otter
240
241 bundled-sources:: $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS))
242
243 TARGET_BUNDLED=$(TARGET_DIR)/bundled-sources
244
245 $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS)): \
246 bundled-sources/%: $(wildcard $(BUNDLE_SOURCES))
247         set -e; d=$(abspath $(TARGET_BUNDLED)); \
248         $(NAILING_CARGO_JUST_RUN) mkdir -p $$d; \
249         $(if $(filter-out otter,$*), cd ../$*;) \
250         $(BUNDLE_SOURCES_CMD) --output $$d/$*
251
252 bundled-sources:: $(addprefix $(TARGET_BUNDLED)/, $(BUNDLED_SOURCES_FILES))
253
254 $(addprefix $(TARGET_BUNDLED)/, $(BUNDLED_SOURCES_LIT)): $(TARGET_BUNDLED)/%: %
255         $(NAILING_CARGO_JUST_RUN) cp $(abspath $(src))/$< $(abspath $@)
256
257 $(TARGET_BUNDLED)/index.html: bundled-sources-make-index $(MAKEFILE_DEP)
258         $(NAILING_CARGO_JUST_RUN) sh -ec '                      \
259                 cd $(abspath $(src)); mkdir -p $(dir $@);       \
260                 ./$< >$@.tmp $(BUNDLED_SOURCES_LINKS);          \
261                 mv -f $@.tmp $@;                                \
262         '
263
264 bundled-sources::
265         @echo Bundled sources.
266
267 #---------- svg processing ----------
268
269 LIBRARIES ?= $(basename $(wildcard library/*.toml))
270
271 include $(addsuffix /files.make, $(LIBRARIES))
272
273 USVG_PROCESSOR = usvg-processor
274 LIBRARY_PROCESS_SVG = ./$(USVG_PROCESSOR) $@ $(wordlist 1,2,$^) '$(USVG_CMD) $(USVG_OPTIONS)'
275 $(LIBRARY_FILES): $(USVG_PROCESSOR) $(USVG_BINARY) $(MAKEFILE_DEP)
276
277 # actual command for each of $(LIBRARY_FILES) is in one of the files.make
278
279 library/%/files.make: media-scraper library/%.toml
280         ./$< --offline library/$*.toml
281
282 #---------- typescript ----------
283
284 templates/%.js: tsc-wrap tsconfig.json
285         ./tsc-wrap $@ tsconfig.json $(filter %.ts,$^)
286
287 templates/script.js: $(TS_SRC_FILES) stamp/wasm-bindgen
288
289 #---------- other templates ----------
290
291 $(addprefix templates/,$(LITFILES)): templates/%: %
292         cp $< $@.new && mv -f $@.new $@
293
294 $(addprefix templates/,$(TXTFILES)): templates/%: %.txt
295         cp $< $@.new && mv -f $@.new $@
296
297 libraries: $(LIBRARY_FILES)
298
299 templates/shapelib.html: $(TARGET_DIR)/debug/otterlib $(LIBRARY_FILES)
300         $(NAILING_CARGO_JUST_RUN) $(abspath $<) \
301         --libs '$(addprefix $(PWD)/, $(addsuffix .toml, $(LIBRARIES)))' \
302                 preview >$@.tmp && mv -f $@.tmp $@
303
304 #---------- webdriver tests (wdt) ----------
305
306 AT_TESTS := $(basename $(notdir $(wildcard apitest/at-*.rs)))
307 WDT_TESTS := $(basename $(notdir $(wildcard wdriver/wdt-*.rs)))
308
309 WDT_LANDSCAPE_TESTS = wdt-altergame
310
311 at:     $(foreach f, $(AT_TESTS), stamp/$f.check)
312
313 wdt:    $(foreach f, $(WDT_TESTS), stamp/$f.check) \
314         $(foreach f, $(WDT_LANDSCAPE_TESTS), stamp/$f.lcheck) \
315
316 RUNTEST_DEPS =  apitest/run1 stamp/cargo.debug $(FILEASSETS) \
317                 $(wildcard libraries/*.toml) $(LIBRARY_FILES)
318
319 AT_DEPS =       $(filter-out templates/script.js, $(RUNTEST_DEPS)) \
320                 stamp/cargo-at.debug
321
322 WDT_DEPS =      $(RUNTEST_DEPS) \
323                 stamp/cargo-wdt.debug
324
325 AT_WDT_RUN = $(NAILING_CARGO_JUST_RUN) $(abspath $<)
326
327 AT_RUN = $(AT_WDT_RUN) $(basename $(notdir $@))
328 WDT_RUN = $(AT_WDT_RUN) wdriver --test=$(basename $(notdir $@))
329
330 for-at:                 $(AT_DEPS)
331 stamp/at-%.check:       $(AT_DEPS)
332         $(AT_RUN)
333         $(stamp)
334
335 for-wdt:                $(WDT_DEPS)
336 stamp/wdt-%.check:      $(WDT_DEPS)
337         $(WDT_RUN)
338         $(stamp)
339
340 stamp/wdt-%.lcheck:     $(WDT_DEPS)
341         $(WDT_RUN) --as-if=lwdt-$* --layout=Landscape
342         $(stamp)
343
344 #---------- deployment ----------
345
346 DEPLOY_USER=ian@login.chiark.greenend.org.uk
347 DEPLOY_BASE=$(DEPLOY_USER):/volatile/Otter
348 DEPLOY_FINISH=/home/Otter/etc/deploy-finish
349
350 deploy: stamp/cargo.deploy-build bundled-sources assets libraries
351         rsync -zv --progress $(addprefix $(DEPLOY_TARGET_DIR)/,$(PROGRAMS)) $(DEPLOY_BASE)/bin/
352         rsync -rv --progress $(TARGET_DIR)/bundled-sources/. $(DEPLOY_BASE)/bundled-sources
353         rsync -r README.md $(DEPLOY_BASE)/.
354         rsync -r --delete --exclude=\*~ library specs $(DEPLOY_BASE)/.
355         rsync -r $(FILEASSETS) $(addprefix $(WASM_PACKED)/, $(WASM_ASSETS)) \
356                 $(DEPLOY_BASE)/assets/
357         rsync -r nwtemplates/*.tera $(DEPLOY_BASE)/nwtemplates/
358         ssh -o BatchMode=true $(DEPLOY_USER) $(DEPLOY_FINISH)
359         git branch -f $(DEPLOYED_BRANCH)
360         -git push origin master
361         -git push chiark master
362
363 #$(DEPLOY_BASE)/bundled-sources
364
365 #---------- clean ----------
366
367 clean-for-retest:
368         rm -f templates/script.js library/*/*.usvg stamp/*
369         rm -rf $(LIBRARY_CLEAN)
370         find * -name '*~' -print0 | xargs -0r rm --
371
372 clean: clean-nailing clean-for-retest
373         rm -rf target
374         $(NAILING_CARGO_JUST_RUN) rm -rf target