summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2012-06-29 11:01:54 +0000
committerPeter Eisentraut2012-06-29 11:01:54 +0000
commitb344c651fb87cb7c7f9f59b714e2879e777caf66 (patch)
tree9c94ce4906c3ad4dbfff8c5196c3fe69e7293f60
parentae90128dc5f8412c8ce31804bbf0a0f8ab345db1 (diff)
Make init-po and update-po recursive make targets
This is for convenience, now that adding recursive targets is much easier than it used to be when the NLS stuff was initially added.
-rw-r--r--GNUmakefile.in2
-rw-r--r--src/Makefile.global.in2
-rw-r--r--src/pl/plpgsql/Makefile5
3 files changed, 5 insertions, 4 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in
index 5ebdb8b202..17b1b3b5a4 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -39,7 +39,7 @@ install-world:
# build src/ before contrib/
install-world-contrib-recurse: install-world-src-recurse
-$(call recurse,installdirs uninstall coverage,doc src config)
+$(call recurse,installdirs uninstall coverage init-po update-po,doc src config)
$(call recurse,distprep,doc src config contrib)
diff --git a/src/Makefile.global.in b/src/Makefile.global.in
index 3941d969b8..5b438193f9 100644
--- a/src/Makefile.global.in
+++ b/src/Makefile.global.in
@@ -18,7 +18,7 @@
#
# Meta configuration
-standard_targets = all install installdirs uninstall distprep clean distclean maintainer-clean coverage check installcheck maintainer-check
+standard_targets = all install installdirs uninstall distprep clean distclean maintainer-clean coverage check installcheck maintainer-check init-po update-po
# these targets should recurse even into subdirectories not being built:
standard_always_targets = distprep clean distclean maintainer-clean
diff --git a/src/pl/plpgsql/Makefile b/src/pl/plpgsql/Makefile
index 7112e7e263..6588625c0f 100644
--- a/src/pl/plpgsql/Makefile
+++ b/src/pl/plpgsql/Makefile
@@ -12,5 +12,6 @@ subdir = src/pl/plpgsql
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
-all install installdirs uninstall distprep clean distclean maintainer-clean coverage:
- $(MAKE) -C src $@
+SUBDIRS = src
+
+$(recurse)