Ignore Tampio output and add fi-x-morpho dictionary to Docker

This commit is contained in:
2026-03-29 13:34:44 +03:00
parent 0dbb38aa6f
commit 935e016c40
3 changed files with 42 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
TAMPIO = docker compose run --rm tampio tampio -i -p
EXAMPLES = \
examples/basics/hello.html \
examples/basics/factorial.html \
examples/basics/fibonacci.html \
examples/basics/index.html \
examples/data-structures/lista.html \
examples/data-structures/vektori.html \
examples/strings/merkkijono.html \
examples/async/nappi.html \
examples/program/kasvutaulukko.html
.PHONY: all clean
all: $(EXAMPLES)
%.html: %.itp
$(TAMPIO) $< 2>/dev/null > $@
clean:
rm -f $(EXAMPLES)