From 377247630a0da10470e23980db90c7923064a605 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 29 Jun 2015 15:39:44 +0300 Subject: Don't build PDF manual in Debian package --- manual/Makefile | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'manual/Makefile') 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) -- cgit v1.2.1