Skip to content

Commit

Permalink
Make init-po and update-po recursive make targets
Browse files Browse the repository at this point in the history
This is for convenience, now that adding recursive targets is much
easier than it used to be when the NLS stuff was initially added.
  • Loading branch information
petere committed Jun 29, 2012
1 parent ae90128 commit b344c65
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion GNUmakefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.global.in
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 3 additions & 2 deletions src/pl/plpgsql/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit b344c65

Please sign in to comment.