summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 5 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index c9d0cf8..5a00cdc 100644
--- a/Makefile
+++ b/Makefile
@@ -5,16 +5,7 @@ clean:
5 @rm -rf output/* 5 @rm -rf output/*
6 6
7build_fonts: clean 7build_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
19build_sass: clean 10build_sass: clean
20 @scripts/build_sass.sh 11 @scripts/build_sass.sh
@@ -34,7 +25,10 @@ watch_content: build
34watch_templates: build 25watch_templates: build
35 @scripts/watch_templates.sh 26 @scripts/watch_templates.sh
36 27
37watch: watch_sass watch_content watch_templates 28watch_metadata: build
29 @scripts/watch_metadata.sh
30
31watch: watch_sass watch_content watch_templates watch_metadata
38 32
39serve_only: build 33serve_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