]> granicus.if.org Git - postgresql/commitdiff
Fix non-GNU makefiles for AIX make.
authorNoah Misch <noah@leadboat.com>
Thu, 30 Nov 2017 08:57:22 +0000 (00:57 -0800)
committerNoah Misch <noah@leadboat.com>
Thu, 30 Nov 2017 08:57:31 +0000 (00:57 -0800)
Invoking the Makefile without an explicit target was building every
possible target instead of just the "all" target.  Back-patch to 9.3
(all supported versions).

Makefile
src/test/regress/Makefile

index 4c68950e90791c5463fb8578921265ae6278361b..c400854cd3d0274d07709ffe1cb01ae035b7e480 100644 (file)
--- a/Makefile
+++ b/Makefile
 # GNUmakefile won't exist yet, so we catch that case as well.
 
 
+# AIX make defaults to building *every* target of the first rule.  Start with
+# a single-target, empty rule to make the other targets non-default.
+all:
+
 all check install installdirs installcheck installcheck-parallel uninstall clean distclean maintainer-clean dist distcheck world check-world install-world installcheck-world:
        @if [ ! -f GNUmakefile ] ; then \
           echo "You need to run the 'configure' program first. See the file"; \
index 6409a485e8441a144d9d39aebdf8b3cccc889e24..7c665ff892d3ced2bc6709d71ecc2b7ae6c79100 100644 (file)
@@ -7,6 +7,11 @@
 # GNU make uses a make file named "GNUmakefile" in preference to "Makefile"
 # if it exists.  Postgres is shipped with a "GNUmakefile".
 
+
+# AIX make defaults to building *every* target of the first rule.  Start with
+# a single-target, empty rule to make the other targets non-default.
+all:
+
 all install clean check installcheck:
        @echo "You must use GNU make to use Postgres.  It may be installed"
        @echo "on your system with the name 'gmake'."