diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2006-08-18 19:58:34 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2006-08-18 19:58:34 +0000 |
commit | 331428205bd435215d60c7e94fa6fbe6323ff7b3 (patch) | |
tree | 5a0b628b3154fb22502acccc7eb03b16af3d2a8f | |
parent | 9084f700e5e148b8b69ce8f80d8074a43dc585aa (diff) | |
download | postgresql-331428205bd435215d60c7e94fa6fbe6323ff7b3.tar.gz postgresql-331428205bd435215d60c7e94fa6fbe6323ff7b3.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 62bbf57ba20..021652776b6 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -1,7 +1,7 @@ # # PostgreSQL top level makefile # -# $PostgreSQL: pgsql/GNUmakefile.in,v 1.42 2005/05/01 06:15:51 neilc Exp $ +# $PostgreSQL: pgsql/GNUmakefile.in,v 1.42.2.1 2006/08/18 19:58:34 adunstan Exp $ # subdir = @@ -48,7 +48,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." ; \ |