summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 03ef22adad62aed211883aba847b1d5f103b8446 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
all: build

clean:
	@mkdir -p output
	@rm -rf output/*

build_fonts: clean
	@pyftsubset assets/iosevka-term-ss09-regular.ttf \
		--text-file='assets/glyphs.txt' \
		--layout-features+=ss09,dlig \
		--flavor='woff2' \
		--output-file='output/iosevka-term-ss09-regular.woff2'
	@pyftsubset assets/iosevka-term-ss09-bold.ttf \
		--text-file='assets/glyphs.txt' \
		--layout-features+=ss09,dlig \
		--flavor='woff2' \
		--output-file='output/iosevka-term-ss09-bold.woff2'

build_sass: clean
	@sassc assets/style.scss | node_modules/.bin/csso > output/style.css

build_content: clean
	@scripts/build_content.sh

build: build_fonts build_sass build_content
#	@pigz -R -k -9 -- `find output -type f -iregex '.*\\.\\(css\\|js\\|json\\|html\\|xml\\|txt\\|svg\\|ico\\)'`

watch_sass: build
	@scripts/watch_sass.sh

watch_content: build
	@scripts/watch_content.sh

watch: watch_sass watch_content

serve_only: build
	@python -m http.server --bind 127.0.0.1 --directory output

serve: watch serve_only

deploy: build
	@rsync --progress --stats -avz --delete output/ vulpes@94.130.78.123:/srv/http/volpeon.ink/ 

.PHONY: all clean build watch serve deploy