diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-10-29 22:44:06 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-10-29 22:48:01 +0100 |
commit | 75f1e778d5f98a582c6bf9945e73727e0cf29075 (patch) | |
tree | 089985628c789e60dfa2df194d3f37ad2402cd75 /Makefile | |
parent | 9cad508b5c98ca1029460807249cafb712f28f1e (diff) |
Use WOFF2 fonts
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 {} \; |