diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-06-29 14:01:54 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-06-29 14:01:54 +0300 |
commit | b344c651fb87cb7c7f9f59b714e2879e777caf66 (patch) | |
tree | 9c94ce4906c3ad4dbfff8c5196c3fe69e7293f60 /src | |
parent | ae90128dc5f8412c8ce31804bbf0a0f8ab345db1 (diff) | |
download | postgresql-b344c651fb87cb7c7f9f59b714e2879e777caf66.tar.gz postgresql-b344c651fb87cb7c7f9f59b714e2879e777caf66.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 2 | ||||
-rw-r--r-- | src/pl/plpgsql/Makefile | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 3941d969b86..5b438193f98 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 7112e7e2630..6588625c0fa 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) |