chiark / gitweb /
Makefile: Break out NWTEMPLATEASSETS variable
[otter.git] / Makefile
1 # Copyright 2020-2021 Ian Jackson and contributors to Otter
2 # SPDX-License-Identifier: AGPL-3.0-or-later
3 # There is NO WARRANTY.
4
5 # make -j8
6 # make -j8 release
7 # make -j8 shapelib
8
9 SHELL=/bin/bash
10 src=.
11
12 default: all check
13 all: debug
14 full-check: all check cargo-syntaxcheck-release shapelib doc-sphinx
15 full-check: for-deploy release
16 everything: debug doc release check bundled-sources
17
18 shapelib: templates/shapelib.html docs/html/index.html
19         @echo 'Shape library preview and docs can now be found here:'
20         @for f in $^; do echo '  file://$(PWD)/'$$f; done
21
22 MAKEFILE_DEP ?= Makefile
23 MAKEFILE_FIND_X ?=
24 # ^ set this to "x" to debug the $rsrcs rune
25
26 #---------- funky macros etc. ----------
27
28 cr = $(addprefix --,$(filter-out debug,$1))
29 rsrcs = $(shell $(foreach x,$(MAKEFILE_FIND_X),set -$x;)\
30     find -H $1 \( -name Cargo.toml -o -name Cargo.lock -o -name Cargo.lock.example -o -name \*.rs \) \! -path '*/build/*' )
31 stamp=@mkdir -p stamp; touch $@
32
33 BUNDLED_SOURCES_LIT = README.md LICENCE
34 BUNDLED_SOURCES_FILES = index.html $(BUNDLED_SOURCES_LIT)
35 BUNDLED_SOURCES_LINKS += $(BUNDLED_SOURCES_LIT) otter/
36 BUNDLED_SOURCES += $(BUNDLED_SOURCES_FILES)
37
38 #---------- programs and config variables ----------
39
40 TARGET_DIR ?= target
41
42 USVG_OPTIONS = "--sans-serif-family=DejaVu Sans"
43
44 WASM_BINDGEN = $(TARGET_DIR)/debug/wasm-bindgen
45 WASM_BINDGEN_OPTIONS =                                          \
46         --remove-name-section --remove-producers-section        \
47         --typescript
48
49 BUNDLE_SOURCES ?= bundle-rust-sources
50
51 SPHINXBUILD   ?= sphinx-build
52
53 ifndef INKSCAPE_EXTENSIONS
54 INKSCAPE ?= inkscape
55 INKSCAPE_SDD_QUIETEN ?= 2>/dev/null
56 # inkscape 0.92.4: --extension-directory works, no --system-data-directory
57 # inkscape 1.0.2: --system-data-directory, no --extension-directory
58 INKSCAPE_EXTENSIONS := $(shell set -e; { sdd=$$( $(INKSCAPE) --system-data-directory $(INKSCAPE_SDD_QUIETEN) ) && echo "$$sdd/extensions"; } || $(INKSCAPE) --extension-directory )
59 endif
60 RECOLOUR_SVG ?= ./run-inkscape-extension $(INKSCAPE_EXTENSIONS)/color_replace.py
61
62 DEPLOY_ARCH=x86_64-unknown-linux-musl
63 DEPLOY_RELEASE=release
64 DEPLOY_TARGET_DIR=$(TARGET_DIR)/$(addsuffix /,$(DEPLOY_ARCH))$(DEPLOY_RELEASE)
65 DEPLOYED_BRANCH=deployed
66 PUBLISHED_BRANCH=published
67
68 RUST_CLIPPY_OPTIONS ?= $(shell perl -pe 's/\#.*//; s/\n/ /' clippy-options)
69 RUST_CLIPPY ?= clippy
70 RUST_CLIPPY_CMD := clippy $(RUST_CLIPPY_OPTIONS)
71
72 #---------- nailing-cargo ----------
73
74 ifneq (,$(wildcard ../Cargo.nail))
75
76 NAILING_CARGO ?= nailing-cargo
77 CARGO_CMD ?= $(NAILING_CARGO)
78 BUILD_SUBDIR ?= ../Build
79 TARGET_DIR = $(BUILD_SUBDIR)/$(notdir $(PWD))/target
80
81 NAILING_CARGO_JUST_RUN ?= $(NAILING_CARGO) --just-run -q ---
82 BUNDLE_SOURCES_CMD ?= $(NAILING_CARGO) --- $(BUNDLE_SOURCES)
83 USVG_CMD ?= $(NAILING_CARGO_JUST_RUN) $(USVG)
84 WASM_BINDGEN_CLI_CARGO_OPTS ?= --subcommand-props=!manifest-path
85
86 CARGO_DOCUMENT_PRIVATE_ITEMS ?= --document-private-items
87 CARGO_DOC_OPTS += $(CARGO_DOCUMENT_PRIVATE_ITEMS)
88
89 clean-nailing:
90         $(NAILING_CARGO_JUST_RUN) \
91  sh -c 'cd "$1"; find -mindepth 1 -maxdepth 1 -print0 | xargs -0r rm -rf --' \
92                 $(abspath $(BUILD_SUBDIR)/$(notdir $(PWD)))
93
94 else
95 CARGO_CMD ?= cargo
96 clean-nailing:
97 endif # Cargo.nail
98
99 BUILD_SUBDIR ?= ../Build
100 BUNDLE_SOURCES_CMD ?= $(BUNDLE_SOURCES)
101 USVG_CMD ?= $(USVG)
102
103 WASM_PACKED=$(TARGET_DIR)/packed-wasm
104
105 #---------- local programs ----------
106
107 define lp
108 stamp/cargo.$2: $(call rsrcs, ! -name \*.rs)
109         $$(CARGO) build $(call cr,$3) -p $2
110         $$(stamp)
111 $1 := $(abspath $(TARGET_DIR)/$3/$4)
112 endef
113
114 $(eval $(call lp,BUNDLE_SOURCES,bundle-sources,debug,bundle-rust-sources))
115 $(eval $(call lp,USVG,usvg,release,usvg))
116
117 #---------- variables defining bits of source etc. ----------
118
119 PROGRAMS=daemon-otter otter
120
121 WASM_ASSETS := $(addprefix otter_wasm,.js _bg.wasm)
122 WASM_OUTPUTS := $(addprefix otter_wasm,.d.ts)
123
124 TS_SRCS= script
125 TS_SRC_FILES= \
126         $(addprefix templates/,$(addsuffix .ts,$(TS_SRCS))) \
127         webassembly-types/webassembly.d.ts \
128         $(WASM_PACKED)/otter_wasm.d.ts
129
130 LITFILES= LICENCE AGPLv3
131 TXTFILES= CC-BY-SA-3.0 CC-BY-SA-4.0
132
133 NWTEMPLATEASSETS = nwtemplates/die-overlay.tera
134 FILEASSETS =    $(addprefix templates/, libre shapelib.html script.js \
135                         $(LITFILES) $(TXTFILES)) \
136                 $(wildcard templates/*.tera) \
137                 $(NWTEMPLATEASSETS)
138
139 WASM := wasm32-unknown-unknown
140 # ^ todo: Is this still right after
141 #     Use correct ABI for wasm32 by default
142 #     https://github.com/rust-lang/rust/pull/79998
143 # ?  But maybe it doesn't matter since we're very conservative and
144 # only pass JsValue and a few strings across the WASM ABI.
145
146 RUST_NIGHTLY_VERSION ?= +nightly
147 CARGO = $(CARGO_CMD) $(RUST_VERSION)
148
149 #---------- toplevel aggregate targets ----------
150
151 check: stamp/cargo.debug-check at wdt jstest
152         @echo 'Tests passed.'
153
154 full-check: stamp/cargo.release-check
155 full-check: stamp/cargo.release-miri stamp/cargo.debug-miri
156
157 full-check:
158         @echo 'Full tests passed.'
159
160 doc: cargo-doc doc-sphinx examples
161
162 debug release:: %: stamp/cargo.% assets libraries extra-%
163
164 cargo: cargo-debug cargo-wasm-release
165
166 cargo-debug cargo-release cargo-check cargo-doc \
167 cargo-wasm-debug cargo-wasm-release:: \
168 cargo-%: stamp/cargo.%
169
170 EXAMPLE_BUNDLES = test-bundle big-bundle
171 EXAMPLE_BUNDLE_FILES = $(foreach f, $(EXAMPLE_BUNDLES), examples/$f.zip)
172
173 examples: $(EXAMPLE_BUNDLE_FILES)
174 .PHONY: examples
175
176 cargo-wasm: cargo-wasm-release
177
178 wasm: stamp/wasm-bindgen
179
180 assets: js stamp/wasm-bindgen $(FILEASSETS)
181
182 js: templates/script.js
183
184 extra-debug:
185 extra-release: bundled-sources
186
187 cargo-syntaxcheck: cargo-syntaxcheck-host cargo-syntaxcheck-wasm
188 cargo-syntaxcheck-host:
189         $(CARGO) check --workspace
190 cargo-syntaxcheck-wasm:
191         $(CARGO) check --target $(WASM) -p otter-wasm --release
192 cargo-syntaxcheck-release:
193         $(CARGO) check --workspace --release
194
195 cargo-clippy: cargo-clippy-host cargo-clippy-wasm
196 cargo-clippy-host: clippy-options
197         $(CARGO) $(RUST_CLIPPY) --workspace $(RUST_CLIPPY_OPTIONS)
198 cargo-clippy-wasm: clippy-options
199         $(CARGO) $(RUST_CLIPPY) --target $(WASM) -p otter-wasm $(RUST_CLIPPY_OPTIONS)
200
201 #---------- cargo ----------
202
203 DR=debug release
204 CARGOES=$(foreach t, wasm-,$(addprefix $t,check $(DR)))
205
206 $(addprefix stamp/cargo.,$(DR)):: \
207 stamp/cargo.%: $(call rsrcs,. ! -path './wasm/*')
208         $(CARGO) build --workspace $(call cr,$*) -p otter -p otter-daemon -p otter-cli
209         $(NAILING_CARGO_JUST_RUN) \
210         ln -sf otter $(abspath $(TARGET_DIR))/$*/otter-ssh-proxy
211         $(stamp)
212
213 $(TARGET_DIR)/debug/%: $(call rsrcs, ! -path './wasm/*')
214         $(CARGO) build --workspace -p otter-cli
215         $(NAILING_CARGO_JUST_RUN) touch $(abspath $@)
216
217 stamp/cargo.wasm-bindgen: $(call rsrcs, ! -name \*.rs)
218         $(CARGO_CMD) $(WASM_BINDGEN_CLI_CARGO_OPTS) $(RUST_VERSION) \
219                 build --target-dir=target \
220                 --manifest-path=$(abspath wasm/Cargo.toml) -p wasm-bindgen-cli
221         $(stamp)
222
223 stamp/cargo.%-check: $(call rsrcs,.)
224         $(CARGO) test --workspace $(call cr,$*)
225         $(stamp)
226
227 stamp/cargo.%-miri: $(call rsrcs,.)
228         $(CARGO_CMD) $(RUST_NIGHTLY_VERSION) \
229                 miri test --workspace $(call cr,$*)
230         $(stamp)
231
232 stamp/cargo-at.debug: $(call rsrcs,.)
233         $(CARGO) build --workspace $(call cr,$*) -p otter-api-tests
234         $(stamp)
235
236 stamp/cargo-wdt.debug: $(call rsrcs,.)
237         $(CARGO) build --workspace $(call cr,$*) -p otter-webdriver-tests
238         $(stamp)
239
240 stamp/cargo-jstest.debug: $(call rsrcs,.)
241         $(CARGO) build --workspace $(call cr,$*) -p otter-nodejs-tests
242         $(stamp)
243
244 stamp/cargo.doc: $(call rsrcs,.)
245         set -o pipefail -e; \
246         $(CARGO) doc $(CARGO_DOC_OPTS) --workspace 2>&1 \
247                 |egrep -vf .cargo-doc-suppress-errors
248         $(stamp)
249
250 $(addprefix stamp/cargo.wasm-,$(DR)):: \
251 stamp/cargo.wasm-%: $(call rsrcs, base wasm Cargo.*)
252         $(CARGO) build --target $(WASM) -p otter-wasm $(call cr,$*)
253         $(stamp)
254
255 stamp/cargo.deploy-build: $(call rsrcs,.)
256         $(CARGO) build --target $(DEPLOY_ARCH) $(call cr,$(DEPLOY_RELEASE)) -p otter -p otter-cli -p otter-daemon
257         $(NAILING_CARGO_JUST_RUN) \
258         ln -sf otter $(abspath $(TARGET_DIR)/$(DEPLOY_ARCH))/$(DEPLOY_RELEASE)/otter-ssh-proxy
259         $(stamp)
260
261 #---------- sphnix ----------
262
263 doc-sphinx:     docs/html/index.html \
264         $(foreach f, $(EXAMPLE_BUNDLES), docs/html/examples/$f.zip) \
265         $(addprefix docs/html/examples/, $(notdir $(wildcard specs/*.toml)))
266         @echo 'Documentation can now be found here:'
267         @echo '  file://$(PWD)/$<'
268
269 docs/html/index.html: docs/conf.py $(wildcard docs/*.md docs/*.rst docs/*.png)
270         $(SPHINXBUILD) -M html docs docs $(SPHINXOPTS)
271
272 docs/html/examples/%.zip: examples/%.zip
273         mkdir -p docs/html/examples
274         rm -f $@ && ln $< $@
275
276 docs/html/examples/%.toml: specs/%.toml
277         mkdir -p docs/html/examples
278         rm -f $@ && ln $< $@
279
280 #---------- jstest ----------
281
282 JSTESTS= basic lower
283
284 .PHONY: jstest
285 jstest jstests: $(foreach t,$(JSTESTS),stamp/$t.jstest)
286
287 stamp/%.jstest: jstest/run1 jstest/%.nodejs templates/script.js \
288                 stamp/wasm-bindgen-jstest stamp/cargo-jstest.debug
289         $(NAILING_CARGO_JUST_RUN) $(abspath $(filter-out stamp/%,$^))
290         $(stamp)
291
292 #---------- wasm ----------
293
294 $(addprefix $(WASM_PACKED)/,$(WASM_ASSETS) $(WASM_OUTPUTS)): stamp/wasm-bindgen
295 stamp/wasm-bindgen: stamp/cargo.wasm-bindgen stamp/cargo.wasm-release
296         $(NAILING_CARGO_JUST_RUN) $(abspath $(WASM_BINDGEN)) \
297                 $(WASM_BINDGEN_OPTIONS) --no-modules \
298                 --out-dir target/packed-wasm \
299                 target/$(WASM)/release/otter_wasm.wasm
300         $(stamp)
301
302 stamp/wasm-bindgen-jstest: stamp/cargo.wasm-bindgen stamp/cargo.wasm-release
303         $(NAILING_CARGO_JUST_RUN) $(abspath $(WASM_BINDGEN)) \
304                 $(WASM_BINDGEN_OPTIONS) --nodejs \
305                 --out-dir target/jstest \
306                 target/$(WASM)/release/otter_wasm.wasm
307         $(stamp)
308
309 #---------- bundle-sources ----------
310
311 BUNDLED_SOURCES_DIRS += otter
312
313 bundled-sources:: $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS))
314
315 TARGET_BUNDLED=$(TARGET_DIR)/bundled-sources
316
317 $(TARGET_BUNDLED):
318         $(NAILING_CARGO_JUST_RUN) mkdir -p $(abspath $@)
319
320 $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS)): \
321 bundled-sources/%: stamp/cargo.bundle-sources $(TARGET_BUNDLED)
322         set -e; d=$(abspath $(TARGET_BUNDLED)); \
323         $(if $(filter-out otter,$*), cd ../$*;) \
324         $(BUNDLE_SOURCES_CMD) --output $$d/$*
325
326 bundled-sources:: $(addprefix $(TARGET_BUNDLED)/, $(BUNDLED_SOURCES_FILES))
327
328 $(addprefix $(TARGET_BUNDLED)/, $(BUNDLED_SOURCES_LIT)): \
329 $(TARGET_BUNDLED)/%: % $(TARGET_BUNDLED)
330         $(NAILING_CARGO_JUST_RUN) cp $(abspath $(src))/$< $(abspath $@)
331
332 $(TARGET_BUNDLED)/index.html: bundled-sources-make-index \
333                 $(MAKEFILE_DEP) $(TARGET_BUNDLED)
334         $(NAILING_CARGO_JUST_RUN) sh -ec '                      \
335                 cd $(abspath $(src)); mkdir -p $(dir $@);       \
336                 ./$< >$@.tmp $(BUNDLED_SOURCES_LINKS);          \
337                 mv -f $@.tmp $@;                                \
338         '
339
340 bundled-sources::
341         @echo Bundled sources.
342
343 #---------- svg processing ----------
344
345 LIBRARIES ?= $(basename $(wildcard library/*.toml))
346 USVG_DEP = stamp/cargo.usvg
347
348 include $(addsuffix /files.make, $(LIBRARIES))
349
350 USVG_PROCESSOR = usvg-processor
351 LIBRARY_PROCESS_SVG = ./$(USVG_PROCESSOR) $@ $(wordlist 1,2,$^) '$(USVG_CMD) $(USVG_OPTIONS)'
352 $(LIBRARY_FILES): $(USVG_PROCESSOR) $(USVG_DEP) $(MAKEFILE_DEP)
353
354 # actual command for each of $(LIBRARY_FILES) is in one of the files.make
355
356 library/%/files.make: media-scraper library/%.toml
357         ./$< --offline library/$*.toml
358
359 #---------- typescript ----------
360
361 templates/%.js: tsc-wrap tsconfig.json
362         ./tsc-wrap $@ tsconfig.json $(filter %.ts,$^)
363
364 templates/script.js: $(TS_SRC_FILES) stamp/wasm-bindgen
365
366 #---------- other templates ----------
367
368 $(addprefix templates/,$(LITFILES)): templates/%: %
369         cp $< $@.new && mv -f $@.new $@
370
371 $(addprefix templates/,$(TXTFILES)): templates/%: %.txt
372         cp $< $@.new && mv -f $@.new $@
373
374 libraries: $(LIBRARY_FILES)
375
376 templates/shapelib.html: $(TARGET_DIR)/debug/otterlib $(LIBRARY_FILES)
377         $(NAILING_CARGO_JUST_RUN) $(abspath $<) \
378         --libs '$(addprefix $(PWD)/, $(addsuffix .toml, $(LIBRARIES)))' \
379                 preview >$@.tmp && mv -f $@.tmp $@
380
381 nwtemplates/die-overlay.tera: dice/overlay-template-extractor dice/die.svg
382         ./$< <dice/die.svg >$@.tmp && mv -f $@.tmp $@
383
384 library/edited/die-image-d6-_c.svg: dice/extract-image-only dice/die.svg
385         ./$< <dice/die.svg >$@.tmp && mv -f $@.tmp $@
386
387 #---------- examples ----------
388
389 EXAMPLE_BUNDLE_INPUT_DEPS := $(shell                                    \
390         cd examples/test-bundle/ && find \! \( -name '*~' -o -name '.*' \) \
391 )
392
393 examples/%.zip: $(MAKEFILE_DEP)
394         set -e; rm -f $@.tmp; cd examples/$*/; \
395         zip $(ZIPFLAGS) -DX ../$(notdir $@).tmp $(ZIP_INPUTS)
396         mv -f $@.tmp $@
397
398 examples/test-bundle.zip: ZIP_INPUTS=$(EXAMPLE_BUNDLE_INPUT_DEPS)
399 examples/test-bundle.zip: \
400  $(addprefix examples/test-bundle/, $(EXAMPLE_BUNDLE_INPUT_DEPS))
401
402 examples/big-bundle.zip: examples/big-bundle/otter.toml
403 examples/big-bundle.zip: ZIPFLAGS+= -0 -r -q
404 examples/big-bundle.zip: ZIP_INPUTS=.
405 examples/big-bundle/otter.toml: $(LIBRARY_FILES) $(MAKEFILE_DEP)
406         rm -rf examples/big-bundle
407         mkdir examples/big-bundle examples/big-bundle/library
408         @set -e; echo 'MKDIR for $@'; \
409         for l in $(LIBRARIES); do \
410                 mkdir examples/big-bundle/$$l; \
411                 perl -p \
412  -e 'BEGIN { print "# -- AUTOGENERATED FROM COPY IN OTTER SOURCE --\n" }' \
413  -e 'if (m/^\[scraper]/..0) { unless (m/^\[(?!scraper)/..0) { s/^/\#/ } }' \
414  -e 's/(?<=\s)\w\S*(?=\s)/-/ if m/^files = """/..m/^"""/;' \
415                         <$$l.toml >examples/big-bundle/$$l.toml; done
416         @set -e; echo 'LN for $@'; \
417         for e in $(LIBRARY_FILE_INPUTS); do \
418                 ln $${e#*:} examples/big-bundle/$${e%%.usvg:*}.svg; done;
419         @set -e; echo 'MV for $@'; \
420         cd examples/big-bundle/library/; for x in '' .toml; do \
421                 mv wikimedia$$x duped-example$$x; done
422         @set -e; mkdir examples/big-bundle/specs/; \
423         perl -pe <specs/demo.game.toml \
424                 >examples/big-bundle/specs/Modded-spec.game.toml \
425                 's/chess-b-/chess-purple-/; s/chess-w-/chess-yellow-/'
426         @set -e; echo 'ECHO for $@'; \
427         echo 'title = "Autogenerated test bundle - do not distribute"' \
428                 >$@.tmp
429         mv -f $@.tmp $@
430
431 #---------- webdriver tests (wdt) ----------
432
433 AT_TESTS := $(basename $(notdir $(wildcard apitest/at-*.rs)))
434 WDT_TESTS := $(basename $(notdir $(wildcard wdriver/wdt-*.rs)))
435
436 WDT_LANDSCAPE_TESTS = wdt-altergame
437
438 at:     $(foreach f, $(AT_TESTS), stamp/$f.check)
439
440 wdt:    $(foreach f, $(WDT_TESTS), stamp/$f.check) \
441         $(foreach f, $(WDT_LANDSCAPE_TESTS), stamp/$f.lcheck) \
442
443 RUNTEST_DEPS =  apitest/run1 stamp/cargo.debug $(FILEASSETS) \
444                 $(wildcard specs/*.toml) examples/test-bundle.zip \
445                 $(wildcard libraries/*.toml) $(LIBRARY_FILES)
446
447 AT_DEPS =       $(filter-out templates/script.js, $(RUNTEST_DEPS)) \
448                 examples/big-bundle.zip \
449                 stamp/cargo-at.debug
450
451 WDT_DEPS =      $(RUNTEST_DEPS) wdriver/firefox-wrapper \
452                 stamp/cargo-wdt.debug
453
454 AT_WDT_RUN = $(NAILING_CARGO_JUST_RUN) $(abspath $<)
455
456 AT_RUN = $(AT_WDT_RUN) apitest --test=$(basename $(notdir $@))
457 WDT_RUN = $(AT_WDT_RUN) wdriver --test=$(basename $(notdir $@))
458
459 for-at:                 $(AT_DEPS)
460 stamp/at-%.check:       $(AT_DEPS)
461         $(AT_RUN)
462         $(stamp)
463
464 for-wdt:                $(WDT_DEPS)
465 stamp/wdt-%.check:      $(WDT_DEPS)
466         $(WDT_RUN)
467         $(stamp)
468
469 stamp/wdt-%.lcheck:     $(WDT_DEPS)
470         $(WDT_RUN) --as-if=lwdt-$* --layout=Landscape
471         $(stamp)
472
473 #---------- docs publication ----------
474
475 PUBLISH_VERSION=unreleased
476 PUBLISH_USER=ianmdlvl@login.chiark.greenend.org.uk
477 PUBLISH_DOC_SPHINX_BASE=public-html/otter
478 PUBLISH_DOC_SPHINX_TAIL=$(PUBLISH_VERSION)/docs
479 PUBLISH_DOC_SPHINX=$(PUBLISH_USER):$(PUBLISH_DOC_SPHINX_BASE)/$(PUBLISH_DOC_SPHINX_TAIL)
480
481 publish: doc-sphinx
482         ssh $(PUBLISH_USER) 'cd $(PUBLISH_DOC_SPHINX_BASE) && mkdir -p $(PUBLISH_DOC_SPHINX_TAIL)'
483         rsync -r --delete-delay docs/html/. $(PUBLISH_DOC_SPHINX)/.
484         git branch -f $(PUBLISHED_BRANCH)
485
486 publish-make-current:
487         ssh $(PUBLISH_USER) 'set -e; cd $(PUBLISH_DOC_SPHINX_BASE); rm -f current.tmp; ln -s $(PUBLISH_VERSION) current.tmp; mv -T current.tmp current'
488
489 #---------- deployment ----------
490
491 DEPLOY_USER=ian@login.chiark.greenend.org.uk
492 DEPLOY_BASE=$(DEPLOY_USER):/volatile/Otter
493 DEPLOY_FINISH=/home/Otter/etc/deploy-finish
494
495 for-deploy: stamp/cargo.deploy-build
496 deploy: for-deploy bundled-sources assets libraries
497         rsync -zvl --progress $(addprefix $(DEPLOY_TARGET_DIR)/,$(PROGRAMS) otter-ssh-proxy) $(DEPLOY_BASE)/bin/
498         rsync -zv --progress $(TARGET_DIR)/release/usvg $(DEPLOY_BASE)/libexec/
499         rsync -rv --progress $(TARGET_DIR)/bundled-sources/. $(DEPLOY_BASE)/bundled-sources
500         rsync -r README.md $(DEPLOY_BASE)/.
501         rsync -r --delete --exclude=\*~ library specs $(DEPLOY_BASE)/.
502         rsync -r $(FILEASSETS) $(addprefix $(WASM_PACKED)/, $(WASM_ASSETS)) \
503                 $(DEPLOY_BASE)/assets/
504         rsync -r nwtemplates/*.tera $(DEPLOY_BASE)/nwtemplates/
505         ssh -o BatchMode=true $(DEPLOY_USER) $(DEPLOY_FINISH)
506         git branch -f $(DEPLOYED_BRANCH)
507         -git push origin main
508         -git push chiark main
509
510 #$(DEPLOY_BASE)/bundled-sources
511
512 #---------- clean ----------
513
514 clean-for-retest:
515         rm -f templates/script.js library/*/*.usvg stamp/*
516         rm -rf $(LIBRARY_CLEAN)
517         rm -rf examples/big-bundle examples/big-bundle.zip
518         rm -f examples/test-bundle.zip
519         find * \( -name '*~' -o -name '*.tmp' \) -print0 | xargs -0r rm --
520
521 clean: clean-nailing clean-for-retest
522         rm -rf target
523         $(NAILING_CARGO_JUST_RUN) rm -rf target