summaryrefslogtreecommitdiff
path: root/manual/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'manual/Makefile')
-rw-r--r--manual/Makefile13
1 files changed, 9 insertions, 4 deletions
diff --git a/manual/Makefile b/manual/Makefile
index 3d84270f..ac291953 100644
--- a/manual/Makefile
+++ b/manual/Makefile
@@ -26,15 +26,20 @@ VERSION = Version $(shell git describe || python ../setup.py --version)
en_sources = $(shell ls en/*.mdwn)
fr_sources = $(shell ls fr/*.mdwn)
de_sources = $(shell ls de/*.mdwn)
-outputs = \
+pdfs = \
obnam-manual.en.pdf \
- obnam-manual.en.html \
obnam-manual.fr.pdf \
+ obnam-manual.de.pdf
+htmls = \
+ obnam-manual.en.html \
obnam-manual.fr.html \
- obnam-manual.de.pdf \
obnam-manual.de.html
-all: $(outputs)
+all: html pdf
+
+html: $(htmls)
+
+pdf: $(pdfs)
obnam-manual.en.pdf: Makefile $(en_sources)
./format-pdf $@ "$(TITLE_EN)" "$(AUTHOR)" "$(VERSION)" $(en_sources)