blob: bd68d3cc3deecd7235fbc6789ceb7ea8d7365d26 (
about) (
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
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
|
.POSIX:
FQDN = euandre.org
favicons = static/lord-favicon.png static/lord-favicon.ico favicon.ico
derived-assets = \
$(favicons) \
TODOs.html \
all: public
dynamic: generated.mk
$(MAKE) -f dynamic.mk all
generated.mk: ALWAYS JEKYLL_COMPAT
sh src/development/dynmake.sh > $@
JEKYLL_COMPAT:
sh src/development/JEKYLL_COMPAT/copy-content.sh
# NOOP rule to assert that the targets that depend on it are
# always considered stale.
ALWAYS:
static/lord-favicon.png: static/lord-favicon.svg
inkscape -o $@ -w 2048 -h 2048 -b white static/lord-favicon.svg
static/lord-favicon.ico: static/lord-favicon.svg
convert static/lord-favicon.svg $@
favicon.ico: static/lord-favicon.ico
ln -fs static/lord-favicon.ico $@
TODOs.html: TODOs.md
sh aux/workflow/TODOs.sh -n website -m public-inbox -o .
check:
disabled:
sh aux/assert-shellcheck.sh
sh aux/workflow/assert-todos.sh
sh scripts/assert-spelling.sh
sh scripts/extract-translations.sh
sh scripts/apply-translations.sh
dev-check: check
clean:
if [ -e generated.mk ]; then \
$(MAKE) -f dynamic.mk clean; \
fi
rm -rf \
public/ .jekyll-cache \
$(derived-assets) \
src/content/ generated.mk
JEKYLL = JEKYLL_ENV=production jekyll
public: $(derived-assets) dynamic
$(JEKYLL) build
run: all
open 'http://localhost:4000'
$(JEKYLL) serve
deploy: all
rsync -avzP public/ $(FQDN):/home/user-data/www/default/ --delete
fqdn:
printf '$(FQDN)'
|