summaryrefslogtreecommitdiff
path: root/doc/makefile
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2009-08-26 17:23:58 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2009-08-26 17:23:58 +0200
commit2a52e8c56b71fa894c52ff93d6b98c39c00dc4e2 (patch)
tree4672cd4b08b68d8a7decc1fba95e2a691f3c7106 /doc/makefile
parentf30c4b6adaa6729630b15a354569ecbae92ec9a8 (diff)
[ Nicolas François ]
* Cleaned up the first patch draft from KURASAWA Nozomu to finally get po4a support for translating the man pages. Many thanks to both for this excellent work! (Closes: #441608)
Diffstat (limited to 'doc/makefile')
-rw-r--r--doc/makefile27
1 files changed, 16 insertions, 11 deletions
diff --git a/doc/makefile b/doc/makefile
index 6ea1c1343..e12de7228 100644
--- a/doc/makefile
+++ b/doc/makefile
@@ -26,22 +26,27 @@ TARGET = binary
include $(COPY_H)
#.PHONY: headers library clean veryclean all binary program doc doc.pt_BR doc.fr
-doc: doc.fr doc.ja doc.pl doc.pt_BR doc.es
+doc: po4a
+ for dir in $(SUBDIRS); do\
+ $(MAKE) -C $$dir $@; \
+ done
-doc.fr: %.fr:
- $(MAKE) -C fr $*
+.PHONY: update-po po4a
+update-po:
+ po4a --previous --no-backups --force --no-translations po4a.conf
-doc.pt_BR: %.pt_BR:
- $(MAKE) -C pt_BR $*
+clean: po4a-clean clean-subdirs
-doc.es: %.es:
- $(MAKE) -C es $*
+clean-subdirs:
+ for dir in $(SUBDIRS); do\
+ $(MAKE) -C $$dir $@; \
+ done
-doc.ja: %.ja:
- $(MAKE) -C ja $*
+po4a-clean:
+ po4a --previous --rm-backups --rm-translations po4a.conf
-doc.pl: %.pl:
- $(MAKE) -C pl $*
+po4a:
+ po4a --previous --no-backups po4a.conf
ifdef DOXYGEN
DOXYGEN_SOURCES = $(shell find $(BASE)/apt-pkg -not -name .\\\#* -and \( -name \*.cc -or -name \*.h \) )