diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-08-23 16:02:34 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-08-23 16:06:05 +0200 |
commit | f9c9aef63c24188c87dbe4a351b2834e2fc0d282 (patch) | |
tree | 2557ec019bb4f2833b86481ccb36ede366946086 /Makefile | |
download | mutti-web-f9c9aef63c24188c87dbe4a351b2834e2fc0d282.tar.gz mutti-web-f9c9aef63c24188c87dbe4a351b2834e2fc0d282.tar.bz2 mutti-web-f9c9aef63c24188c87dbe4a351b2834e2fc0d282.zip |
Add initial layout + pages
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) |