summaryrefslogtreecommitdiff
path: root/manual/Makefile
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-06-29 15:39:44 +0300
committerLars Wirzenius <liw@liw.fi>2015-06-29 15:39:44 +0300
commit377247630a0da10470e23980db90c7923064a605 (patch)
treedac4ee772be175a80c94478d1c0280a3c3edc1de /manual/Makefile
parent7e4528482b7bf03d2953819e157abab09269278c (diff)
downloadobnam-377247630a0da10470e23980db90c7923064a605.tar.gz
Don't build PDF manual in Debian package
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)