summaryrefslogtreecommitdiff
path: root/GNUmakefile.in
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2011-02-14 21:52:32 +0200
committerPeter Eisentraut <peter_e@gmx.net>2011-02-15 06:52:12 +0200
commit2fd77060a2db814146cf1f6cf77755a4b4fd9a80 (patch)
treed3dd4b4c0e81172478f46142f281b134283db1c8 /GNUmakefile.in
parent0d90dc16f87bd991d7eb9f536ca46acef7586d95 (diff)
downloadpostgresql-2fd77060a2db814146cf1f6cf77755a4b4fd9a80.tar.gz
Allow make check in PL directories
Also add make check-world target, and refactor pg_regress invocation code in makefiles a bit.
Diffstat (limited to 'GNUmakefile.in')
-rw-r--r--GNUmakefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in
index 8ccbdcc49f..b9c5f317b6 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -60,6 +60,9 @@ check: all
check installcheck installcheck-parallel:
$(MAKE) -C src/test $@
+# TODO: add contrib
+$(call recurse,check-world,src/test src/pl src/interfaces/ecpg,check)
+
$(call recurse,installcheck-world,src/test src/pl src/interfaces/ecpg contrib,installcheck)
GNUmakefile: GNUmakefile.in $(top_builddir)/config.status
@@ -121,4 +124,4 @@ distcheck: dist
rm -rf $(distdir) $(dummy)
@echo "Distribution integrity checks out."
-.PHONY: dist distdir distcheck docs install-docs world install-world installcheck-world
+.PHONY: dist distdir distcheck docs install-docs world check-world install-world installcheck-world