summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-10-29 22:44:06 +0100
committerThomas Voss <mail@thomasvoss.com> 2023-10-29 22:48:01 +0100
commit75f1e778d5f98a582c6bf9945e73727e0cf29075 (patch)
tree089985628c789e60dfa2df194d3f37ad2402cd75 /Makefile
parent9cad508b5c98ca1029460807249cafb712f28f1e (diff)
Use WOFF2 fonts
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2040f7c..f6c9fa9 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,8 @@ ezcodes := $(shell \
sources := \
$(shell find src -type f -name 'index.gsp') \
$(shell find src -type f -name '*.css') \
- $(shell find src -type f -name '*.svg')
+ $(shell find src -type f -name '*.svg') \
+ $(shell find src -type f -name '*.woff2')
# Different euro coin and -banknote page types
eurocc := $(ezcodes:%=out/euro/%/index.html)
@@ -69,6 +70,9 @@ out/%.css: src/%.css
out/%.svg: src/%.svg
cp $< $@
+out/%.woff2: src/%.woff2
+ cp $< $@
+
check:
LANG=en_US.UTF-8 find src -name '*.gsp' -exec \
aspell --home-dir=./ --ignore-case check {} \;