diff options
author | yvesf <yvesf-git@xapek.org> | 2011-06-25 18:55:25 +0200 |
---|---|---|
committer | yvesf <yvesf-git@xapek.org> | 2011-06-25 18:55:25 +0200 |
commit | 7ea94ce94ea0af7df56e2d7aab6158a3edd5bb4b (patch) | |
tree | c7fb07555f43e54b81ad7089eebd200b00db4a5d /ebus-xml/Makefile | |
parent | 1ccc6292abd33742cd615f1094e23dfdbe6a37f4 (diff) | |
download | ebus-alt-7ea94ce94ea0af7df56e2d7aab6158a3edd5bb4b.tar.gz ebus-alt-7ea94ce94ea0af7df56e2d7aab6158a3edd5bb4b.zip |
ebus xml doku
Diffstat (limited to 'ebus-xml/Makefile')
-rw-r--r-- | ebus-xml/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ebus-xml/Makefile b/ebus-xml/Makefile new file mode 100644 index 0000000..5b01ebb --- /dev/null +++ b/ebus-xml/Makefile @@ -0,0 +1,14 @@ +all: doc + +clean: + rm -r build + +doc: + test -d build || mkdir build + xsltproc transform/ebus.docbook.xslt ebus.xml > build/ebus.docbook.xml + dblatex -T db2latex build/ebus.docbook.xml + +dist: doc + mkdir -p dist/`date --rfc-3339=date` + cp build/ebus.docbook.pdf dist/`date --rfc-3339=date` + |