summaryrefslogtreecommitdiff
path: root/manual/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'manual/Makefile')
-rw-r--r--manual/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/manual/Makefile b/manual/Makefile
index a2e5410b..c2d278d2 100644
--- a/manual/Makefile
+++ b/manual/Makefile
@@ -1,9 +1,12 @@
TITLE_EN = Backups with Obnam
+TITLE_DE = Backups mit Obnam
+TRANS_DE = Übersetzung: Jan Niggemann (jn@hz6.de)
AUTHOR = Lars Wirzenius (liw@liw.fi)
VERSION = Version $(shell git describe)
en_sources = $(shell ls en/*.mdwn)
-outputs = obnam-manual.en.pdf obnam-manual.en.html
+de_sources = $(shell ls de/*.mdwn)
+outputs = obnam-manual.en.pdf obnam-manual.en.html obnam-manual.de.pdf obnam-manual.de.html
all: $(outputs)
@@ -13,5 +16,12 @@ obnam-manual.en.pdf: Makefile $(en_sources)
obnam-manual.en.html: Makefile $(en_sources) ../obnam.css
./format-html $@ "$(TITLE_EN)" "$(AUTHOR)" "$(VERSION)" $(en_sources)
+obnam-manual.de.pdf: Makefile $(de_sources)
+ ./format-de-pdf $@ "$(TITLE_DE)" "$(AUTHOR)" "$(VERSION)" "$(TRANS_DE)" $(de_sources)
+
+obnam-manual.de.html: Makefile $(de_sources) ../obnam.css
+ ./format-de-html $@ "$(TITLE_DE)" "$(AUTHOR)" "$(VERSION)" "$(TRANS_DE)" $(de_sources)
+
clean:
rm -f $(outputs) en/000.mdwn
+ rm -f $(outputs) de/000.mdwn