summaryrefslogtreecommitdiff
path: root/manual/Makefile
diff options
context:
space:
mode:
authorpedrito2 <pierrick@pmartinez.fr>2014-09-07 18:20:11 +0200
committerpedrito2 <pierrick@pmartinez.fr>2014-09-07 18:20:11 +0200
commitad0b71ff93994e950803f5bea7e1dcf074dc25f2 (patch)
tree3ed49e3dd83c4f6d02b85bf0e28411171d68a511 /manual/Makefile
parent2a54cc0a7539a47c4051f2f5f119c0f047a25526 (diff)
downloadobnam-ad0b71ff93994e950803f5bea7e1dcf074dc25f2.tar.gz
Translated the 2 first chapters of the manual in French.
- Modified the Makefile. - Created the fr directory - Translated the chapters : introduction and TLDR
Diffstat (limited to 'manual/Makefile')
-rw-r--r--manual/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/manual/Makefile b/manual/Makefile
index 9df25826..805a5967 100644
--- a/manual/Makefile
+++ b/manual/Makefile
@@ -18,15 +18,19 @@
TITLE_EN = Backups with Obnam
TITLE_DE = Backups mit Obnam
+TITLE_FR = Sauvegardes avec Obnam
TRANS_DE = Übersetzung: Jan Niggemann (jn@hz6.de)
AUTHOR = Lars Wirzenius (liw@liw.fi)
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 = \
obnam-manual.en.pdf \
obnam-manual.en.html \
+ obnam-manual.fr.pdf \
+ obnam-manual.fr.html \
obnam-manual.de.pdf \
obnam-manual.de.html
@@ -38,6 +42,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.fr.pdf: Makefile $(fr_sources)
+ ./format-pdf $@ "$(TITLE_FR)" "$(AUTHOR)" "$(VERSION)" $(fr_sources)
+
+obnam-manual.fr.html: Makefile $(fr_sources) ../obnam.css
+ ./format-html $@ "$(TITLE_FR)" "$(AUTHOR)" "$(VERSION)" $(fr_sources)
+
obnam-manual.de.pdf: Makefile $(de_sources)
./format-de-pdf $@ \
"$(TITLE_DE)" "$(AUTHOR)" "$(VERSION)" "$(TRANS_DE)" \