summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 \