summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 551c9bf..30f5007 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $<