diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 5 insertions, 11 deletions
@@ -5,16 +5,7 @@ clean: | |||
5 | @rm -rf output/* | 5 | @rm -rf output/* |
6 | 6 | ||
7 | build_fonts: clean | 7 | build_fonts: clean |
8 | @pyftsubset assets/iosevka-term-ss09-regular.ttf \ | 8 | @scripts/build_fonts.sh |
9 | --text-file='assets/glyphs.txt' \ | ||
10 | --layout-features+=ss09,dlig \ | ||
11 | --flavor='woff2' \ | ||
12 | --output-file='output/iosevka-term-ss09-regular.woff2' | ||
13 | @pyftsubset assets/iosevka-term-ss09-bold.ttf \ | ||
14 | --text-file='assets/glyphs.txt' \ | ||
15 | --layout-features+=ss09,dlig \ | ||
16 | --flavor='woff2' \ | ||
17 | --output-file='output/iosevka-term-ss09-bold.woff2' | ||
18 | 9 | ||
19 | build_sass: clean | 10 | build_sass: clean |
20 | @scripts/build_sass.sh | 11 | @scripts/build_sass.sh |
@@ -34,7 +25,10 @@ watch_content: build | |||
34 | watch_templates: build | 25 | watch_templates: build |
35 | @scripts/watch_templates.sh | 26 | @scripts/watch_templates.sh |
36 | 27 | ||
37 | watch: watch_sass watch_content watch_templates | 28 | watch_metadata: build |
29 | @scripts/watch_metadata.sh | ||
30 | |||
31 | watch: watch_sass watch_content watch_templates watch_metadata | ||
38 | 32 | ||
39 | serve_only: build | 33 | serve_only: build |
40 | @python -m http.server --bind 127.0.0.1 --directory output | 34 | @python -m http.server --bind 127.0.0.1 --directory output |