blob: ecfe00f0175cffe999309f5fee7d38585807b54c (
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
|
suffix = .xhtml
xsltproc=xsltproc --stringparam suffix $(suffix) --stringparam stylesheet style.min.css
svg2png=rsvg-convert -f png
pages=$(shell xsltproc xsl/main_filenames.xsl main.xml)
pages_gen=$(pages:%.xml=%$(suffix))
common_depend=main.xml $(wildcard xsl/*.xsl) Makefile
DEFAULT_VERBOSITY=0
# verbosity stuff
V_XSLT = $(v_xslt_$(V))
v_xslt_ = $(v_xslt_$(DEFAULT_VERBOSITY))
v_xslt_0 = @echo " XSLT " $@;
V_GEN = $(v_gen_$(V))
v_gen_ = $(v_gen_$(DEFAULT_VERBOSITY))
v_gen_0 = @echo " GEN " $@;
.PHONY: all
all: $(pages_gen) checkmark.png
%.png: %.svg
$(V_GEN) $(svg2png) $< > $@
%$(suffix): %.xml %.xsl $(common_depend)
$(V_XSLT) $(xsltproc) $< > $@
%$(suffix): %.xml $(common_depend)
$(V_XSLT) $(xsltproc) $< > $@
style/style.min.css: style/style.css
node_modules/.bin/postcss -u postcss-css-variables style/style.css | node_modules/.bin/cleancss > style/style.min.css
clean:
rm -f $(pages_gen) checkmark.png
|