diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -7,8 +7,9 @@ all: ${GenSVG} document.html presentation.html .SUFFIXES: .asciidoc .html presentation.html: presentation.asciidoc - asciidoc --out-file=$@ --backend=slidy $< - sed -i -f fix-css.sed $@ + asciidoc --out-file=$@.tmp --backend=slidy $< + sed -f fix-css.sed $@.tmp > $@ + rm $@.tmp .asciidoc.html: asciidoc --out-file=$@ --backend=html $< |