diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-08-07 00:21:12 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-08-07 00:21:12 +0200 |
commit | 351c15d28e0444fd8a78c510a0c4d62ed433c758 (patch) | |
tree | b97aae6ec45c1b341075da147fb9e333246c19f7 /Makefile |
Genesis commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c3a9e05 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +# Generating translations is rather slow; so don’t do that by default +all: + TEMPL_EXPERIMENT=rawgo go generate ./templates + go build + +all-i18n: + TEMPL_EXPERIMENT=rawgo go generate ./templates ./i18n + find . -name out.gotext.json | mcp -b sed s/out/messages/ + go build + +watch: + ls euro-cash.eu | entr -r ./euro-cash.eu + +.PHONY: watch |