blob: 53121cb47d0980ec7fa0d9e1275c3ef09e6bed4a (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
.SHELLFLAGS := -eu -o pipefail -c
.ONESHELL:
.DELETE_ON_ERROR:
PREFIX ?= public
brotli := brotli --force --no-copy-stat
gzip := gzip --best --keep --force
zstd := zstd --force --no-pass-through -19 --quiet --stdout
build: $(PREFIX)/index.html
$(PREFIX)/index.html: config.toml content/**.md static/** templates/** themes/**/*
zola build --force --output-dir $(PREFIX)
format: .formatstamp
.formatstamp: $(PREFIX)/index.html
prettier --write --parser html --print-width 200 "$(PREFIX)/**/*.html"
@touch .formatstamp
clean:
rm -rf ./$(PREFIX)
rm -rf ./.*stamp
to_compress := $(shell fd . $(PREFIX) --type=file -e html -e xml -e txt -e asc)
brotli_files := $(patsubst %, %.br, $(to_compress))
gzip_files := $(patsubst %, %.gz, $(to_compress))
zstd_files := $(patsubst %, %.zst, $(to_compress))
${PREFIX}/%.html.br: ${PREFIX}/%.html
$(brotli) $<
${PREFIX}/%.xml.br: ${PREFIX}/%.xml
$(brotli) $<
${PREFIX}/%.txt.br: ${PREFIX}/%.txt
$(brotli) $<
${PREFIX}/%.asc.br: ${PREFIX}/%.asc
$(brotli) $<
${PREFIX}/%.html.gz: ${PREFIX}/%.html
$(gzip) $<
${PREFIX}/%.xml.gz: ${PREFIX}/%.xml
$(gzip) $<
${PREFIX}/%.txt.gz: ${PREFIX}/%.txt
$(gzip) $<
${PREFIX}/%.asc.gz: ${PREFIX}/%.asc
$(gzip) $<
${PREFIX}/%.html.zst: ${PREFIX}/%.html
$(zstd) $< > $@
${PREFIX}/%.xml.zst: ${PREFIX}/%.xml
$(zstd) $< > $@
${PREFIX}/%.txt.zst: ${PREFIX}/%.txt
$(zstd) $< > $@
${PREFIX}/%.asc.zst: ${PREFIX}/%.asc
$(zstd) $< > $@
compress: .compressstamp
.compressstamp: .formatstamp $(brotli_files) $(gzip_files) $(zstd_files)
@touch .compressstamp
deploy: .deploystamp
.deploystamp: .compressstamp Caddyfile redis.Caddyfile Dockerfile fly.toml
fly deploy
@touch .deploystamp
.PHONY: all clean build format compress deploy
|