From 948c021d50ce26e5935f4909ef7d4c61d28b02b5 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Thu, 23 Dec 2010 18:14:04 +0100 Subject: Build and install translated man pages by default --- src/man/Makefile.am | 54 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 31 insertions(+), 23 deletions(-) (limited to 'src') diff --git a/src/man/Makefile.am b/src/man/Makefile.am index 695696b77..e09e7a585 100644 --- a/src/man/Makefile.am +++ b/src/man/Makefile.am @@ -82,19 +82,6 @@ update-po: cd $(srcdir) && \ $(PO4A) $(PO4A_BUILD_OPTS) --force $(PO4A_CONFIG) -# Generate translated manual pages -translate: man.stamp - if [ -z $$recursion ]; then \ - for lang in $(LINGUAS); do \ - if [ -d $$lang ]; then \ - sources=$$(ls $$lang/*.xml); \ - manpages=$$(echo $$sources | $(SED) 's/\.xml//'); \ - $(MAKE) recursion=1 man_MANS="$$manpages"; \ - fi \ - done \ - fi - - dist-hook: man.stamp if [ -f man.stamp ]; then \ cp man.stamp $(distdir); \ @@ -113,11 +100,6 @@ dist-hook: man.stamp fi -clean-local: clean-local-@USE_NLS@ -distclean-local: clean-local-@USE_NLS@ -mostlyclean-local: clean-local-@USE_NLS@ -maintainer-clean-local: clean-local-@USE_NLS@ - clean-local-no: clean-local-yes: for lang in $(LINGUAS); do \ @@ -128,6 +110,37 @@ clean-local-yes: rm -f $(man_MANS) rm -f man.stamp +else + +man.stamp: $(XML_DOC) + touch $@ + +clean-local-no: +clean-local-yes: + rm -f $(man_MANS) + rm -f man.stamp + +endif + +clean-local: clean-local-@USE_NLS@ +distclean-local: clean-local-@USE_NLS@ +mostlyclean-local: clean-local-@USE_NLS@ +maintainer-clean-local: clean-local-@USE_NLS@ + +# Generate translated manual pages +all-local: all-local-@USE_NLS@ +all-local-no: +all-local-yes: man.stamp + if [ -z $$recursion ]; then \ + for lang in $(LINGUAS); do \ + if [ -d $$lang ]; then \ + sources=$$(ls $$lang/*.xml); \ + manpages=$$(echo $$sources | $(SED) 's/\.xml//'); \ + $(MAKE) recursion=1 man_MANS="$$manpages"; \ + fi \ + done \ + fi + install-data-local: install-data-local-@USE_NLS@ install-data-local-no: install-data-local-yes: @@ -153,8 +166,3 @@ uninstall-local-yes: man_MANS="$$manpages"; \ fi \ done - -else -translate: - @echo No po4a, skipping translations -endif -- cgit