## Process this file with automake to produce Makefile.in all-local: all-local-@USE_NLS@ all-local-no: all-local-yes: man.stamp # FIXME: Use a stamp file until po4a supports them internally. man.stamp: po4a --no-backups --variable srcdir=$(srcdir) \ $(srcdir)/po/po4a.cfg touch $@ clean-local: clean-local-@USE_NLS@ clean-local-no: clean-local-yes: po4a --rm-backups --rm-translations --variable srcdir=$(srcdir) \ $(srcdir)/po/po4a.cfg rm -f man.stamp update-po: cd $(srcdir)/po && \ po4a --no-backups --force --variable srcdir=../../man \ ./po4a.cfg # Extract the list of languages from the po4a config file. LINGUAS = `sed -ne 's/^.*\[po4a_langs\] \(.*\)$$/\1/p' $(srcdir)/po/po4a.cfg` install-data-local: install-data-local-@USE_NLS@ install-data-local-no: install-data-local-yes: for lang in $(LINGUAS); do \ files=""; \ for trans in $(dist_man_MANS); do \ if [ -f $(srcdir)/$$lang/$$trans ]; then \ files="$$files $(srcdir)/$$lang/$$trans"; \ fi; \ done; \ $(MAKE) install-man \ mandir="$(mandir)/$$lang" \ man_MANS="" \ dist_man_MANS="$$files"; \ done uninstall-local: uninstall-local-@USE_NLS@ uninstall-local-no: uninstall-local-yes: for lang in $(LINGUAS); do \ files=""; \ for trans in $(dist_man_MANS); do \ if [ -f $(srcdir)/$$lang/$$trans ]; then \ files="$$files $(srcdir)/$$lang/$$trans"; \ fi; \ done; \ $(MAKE) uninstall-man \ mandir="$(mandir)/$$lang" \ man_MANS="" \ dist_man_MANS="$$files"; \ done dist-hook: man.stamp cp $(srcdir)/man.stamp $(distdir)/ for lang in $(LINGUAS); do \ cp $(srcdir)/po/$$lang.po $(distdir)/po; \ cp $(srcdir)/po/$$lang.add $(distdir)/po; \ $(mkdir_p) $(distdir)/$$lang; \ cp -r $(srcdir)/$$lang $(distdir)/; \ done dist_man_MANS = \ deb-control.5 \ deb-version.5 \ deb-shlibs.5 \ deb-substvars.5 \ deb-symbols.5 \ deb-triggers.5 \ deb-old.5 \ deb-override.5 \ deb.5 \ dpkg-architecture.1 \ dpkg-buildpackage.1 \ dpkg-checkbuilddeps.1 \ dpkg-deb.1 \ dpkg-distaddfile.1 \ dpkg-divert.8 \ dpkg-genchanges.1 \ dpkg-gencontrol.1 \ dpkg-gensymbols.1 \ dpkg-name.1 \ dpkg-parsechangelog.1 \ dpkg-query.1 \ dpkg-scanpackages.1 \ dpkg-scansources.1 \ dpkg-shlibdeps.1 \ dpkg-source.1 \ dpkg-split.1 \ dpkg-statoverride.8 \ dpkg-trigger.1 \ dpkg-vendor.1 \ dpkg.1 \ dpkg.cfg.5 \ update-alternatives.8 if WITH_DSELECT dist_man_MANS += \ dselect.1 \ dselect.cfg.5 endif if WITH_START_STOP_DAEMON dist_man_MANS += \ start-stop-daemon.8 endif EXTRA_DIST = \ po/ChangeLog.old \ po/po4a.cfg \ po/dpkg-man.pot .PHONY: update-po