summaryrefslogtreecommitdiff
path: root/manual/Makefile
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2014-02-11 00:10:41 +0000
committerLars Wirzenius <liw@liw.fi>2014-02-11 00:10:41 +0000
commitc874f3c36a781e1e70cfc20fd08316eb664db66e (patch)
tree3c57bffb7d19788a9fb7fe1fce1f0d8e42c4bfcd /manual/Makefile
parent42c06d73df17fbe8d04575ae687d0a561320d94f (diff)
downloadobnam-c874f3c36a781e1e70cfc20fd08316eb664db66e.tar.gz
Fix how 000.mdwn is used
Diffstat (limited to 'manual/Makefile')
-rw-r--r--manual/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/Makefile b/manual/Makefile
index bea7949e..947b8008 100644
--- a/manual/Makefile
+++ b/manual/Makefile
@@ -2,16 +2,16 @@ TITLE = Backups with Obnam
AUTHOR = Lars Wirzenius (liw@liw.fi)
VERSION = Version $(shell git describe)
-sources = $(wildcard *.mdwn)
+sources = 000.mdwn $(wildcard *.mdwn)
outputs = manual.pdf manual.html
all: $(outputs)
-manual.pdf: Makefile 000.mdwn $(sources)
+manual.pdf: Makefile $(sources)
pandoc --smart --toc --chapters --number-sections \
-o manual.pdf $(sources)
-manual.html: Makefile 000.mdwn $(sources)
+manual.html: Makefile $(sources)
pandoc -H manual.css --smart --toc --chapters --number-sections \
--standalone \
--self-contained \