diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2016-07-04 18:15:51 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2016-07-04 18:59:26 +0200 |
commit | 77c4b12eec6a932bfbf5d5decc81adda277d21bf (patch) | |
tree | 0687a8d768c1dde5e274784ec0277ea04f12b4b9 /Makefile | |
parent | fc466638089998071961f152c041c1d9c79cd17d (diff) | |
download | mutti-web-77c4b12eec6a932bfbf5d5decc81adda277d21bf.tar.gz mutti-web-77c4b12eec6a932bfbf5d5decc81adda277d21bf.tar.bz2 mutti-web-77c4b12eec6a932bfbf5d5decc81adda277d21bf.zip |
Add a rule to generate html files from xhtml
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 28 |
1 files changed, 16 insertions, 12 deletions
@@ -1,12 +1,14 @@ suffix = xhtml version = $(shell git rev-parse --short HEAD) -xsltproc=xsltproc --stringparam suffix .$(suffix) --stringparam stylesheet style.min.css --stringparam version $(version) +xsltproc=xsltproc --stringparam stylesheet style.min.css --stringparam version $(version) svg2png=rsvg-convert -f png +fix_doctype=sed 's/ SYSTEM "about:legacy-compat"//' pages=$(shell xsltproc xsl/main_filenames.xsl main.xml) pages_gen=$(pages:%.xml=%.$(suffix)) +pages_gen_html=$(pages:%.xml=%.html) common_depend=main.xml $(wildcard xsl/*.xsl) Makefile checkmark.svg @@ -25,24 +27,26 @@ V_CSS = $(v_css_$(V)) v_css_ = $(v_css_$(DEFAULT_VERBOSITY)) v_css_0 = @echo " CSS " $@; -V_SED = $(v_sed_$(V)) -v_sed_ = $(v_sed_$(DEFAULT_VERBOSITY)) -v_sed_0 = @echo " SED " $@; - -.PHONY: all +.PHONY: all html all: $(pages_gen) checkmark.png style/style.min.css +html: $(pages_gen_html) + %.png: %.svg $(V_GEN) $(svg2png) $< > $@ -%$(suffix): %.xml %.xsl $(common_depend) - $(V_XSLT) $(xsltproc) $< > $@ - $(V_SED) sed -i 's/ SYSTEM "about:legacy-compat"//' $@ +%.$(suffix): %.xml %.xsl $(common_depend) + $(V_XSLT) $(xsltproc) --stringparam suffix .$(suffix) $< | $(fix_doctype) > $@ + +%.$(suffix): %.xml $(common_depend) + $(V_XSLT) $(xsltproc) --stringparam suffix .$(suffix) $< | $(fix_doctype) > $@ + +%.html: %.xml %.xsl $(common_depend) + $(V_XSLT) $(xsltproc) --stringparam suffix .html $< | $(fix_doctype) | xsltproc xsl/convert-xhtml-to-html.xsl - | $(fix_doctype) > $@ -%$(suffix): %.xml $(common_depend) - $(V_XSLT) $(xsltproc) $< > $@ - $(V_SED) sed -i 's/ SYSTEM "about:legacy-compat"//' $@ +%.html: %.xml $(common_depend) + $(V_XSLT) $(xsltproc) --stringparam suffix .html $< | $(fix_doctype) | xsltproc xsl/convert-xhtml-to-html.xsl - | $(fix_doctype) > $@ style/style.min.css: style/style.css node_modules/.bin/postcss $(V_CSS) node_modules/.bin/postcss -u postcss-css-variables style/style.css | node_modules/.bin/cleancss > style/style.min.css |