diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2006-08-18 19:58:05 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2006-08-18 19:58:05 +0000 |
commit | 1be439084a380bc3f1576e2a2834839e508122dd (patch) | |
tree | 4988e39bfd5355e57fdad14dfcf3cd0e1930a5f0 | |
parent | 9a8920e1d7291e41b3d0d9f15f735f68c2ad987c (diff) | |
download | postgresql-1be439084a380bc3f1576e2a2834839e508122dd.tar.gz postgresql-1be439084a380bc3f1576e2a2834839e508122dd.zip |
Add installcheck-parallel target to top level makefiles.
-rw-r--r-- | GNUmakefile.in | 4 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in index 521b47b1271..16f9057efe1 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -1,7 +1,7 @@ # # PostgreSQL top level makefile # -# $PostgreSQL: pgsql/GNUmakefile.in,v 1.44 2006/04/06 18:54:36 petere Exp $ +# $PostgreSQL: pgsql/GNUmakefile.in,v 1.45 2006/08/18 19:58:05 adunstan Exp $ # subdir = @@ -54,7 +54,7 @@ distclean maintainer-clean: check: all -check installcheck: +check installcheck installcheck-parallel: $(MAKE) -C src/test $@ GNUmakefile: GNUmakefile.in $(top_builddir)/config.status @@ -11,7 +11,7 @@ # GNUmakefile won't exist yet, so we catch that case as well. -all check install installdirs installcheck uninstall dep depend clean distclean maintainer-clean: +all check install installdirs installcheck installcheck-parallel uninstall dep depend clean distclean maintainer-clean: @if [ ! -f GNUmakefile ] ; then \ echo "You need to run the 'configure' program first. See the file"; \ echo "'INSTALL' for installation instructions." ; \ |