summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
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 {} \;