diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 {} \; |