diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-01-16 18:17:18 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-01-16 18:17:18 +0100 |
commit | 273038226cae28ad7f2170980ecccef719cc1296 (patch) | |
tree | 82f76811d46130acdc8f5e7c195d94c1d9422788 /Makefile | |
parent | 026cb669b4b0e85cd9655c19102a57e6337c8998 (diff) | |
download | mmswe-273038226cae28ad7f2170980ecccef719cc1296.tar.gz mmswe-273038226cae28ad7f2170980ecccef719cc1296.tar.bz2 mmswe-273038226cae28ad7f2170980ecccef719cc1296.zip |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -8,13 +8,19 @@ EPSs=$(DIAs:.dia=.eps) .PHONY: all clean all: projekt_doku.pdf presentation.html -presentation.html: presentation.txt $(SVGs) $(PNGs) +.SUFFIXES: .txt .html +.txt.html: asciidoc --out-file=$@ --backend=slidy $< sed -i -f fix-css.sed $@ -projekt_doku.pdf: projekt_doku.asciidoc thesis.xsl thesis.sty $(SVGs) $(EPSs) +presentation.html: presentation.txt $(SVGs) $(PNGs) + +.SUFFIXES: .asciidoc .pdf +.asciidoc.pdf: a2x -f pdf $< +projekt_doku.pdf: projekt_doku.asciidoc thesis.xsl thesis.sty $(SVGs) $(EPSs) + .PHONY: pluggit pluggit: rm -f pluggit/pluggit |