diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2bfa102 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +xsltproc=xsltproc + +#pages=$(shell xmllint --xpath "//*/@filename" main.xml | sed 's/filename=//g'| xargs echo) +pages=$(shell sed -n 's/^.*filename="\([^"]*\)".*/\1/p' main.xml) + +pages_html=$(pages:%.xml=%.xhtml) + +.PHONY: all +all: $(pages_html) + +%.xhtml: %.xml %.xsl xsl/* + $(xsltproc) $< > $@ +%.xhtml: %.xml xsl/* + $(xsltproc) $< > $@ + +clean: + rm -f $(pages_html) |