summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2000-06-12 16:37:22 +0000
committerBruce Momjian <bruce@momjian.us>2000-06-12 16:37:22 +0000
commitb0929c82ac3e38c757d110cfeb4edd1eb2e2702a (patch)
treea55696caf38f8ec97d28f2de144300e5d478b30b /Makefile
parent5083a01fece25b36837765c0c8a834a9fb519b6c (diff)
downloadpostgresql-b0929c82ac3e38c757d110cfeb4edd1eb2e2702a.tar.gz
Put back old Makefiles, in pgsql and pgsql/src.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000..c5eca7a9d2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,36 @@
+# The PostgreSQL make files exploit features of GNU make that other
+# makes do not have. Because it is a common mistake for users to try
+# to build Postgres with a different make, we have this make file
+# that, as a service, will look for a GNU make and invoke it, or show
+# an error message if none could be found.
+
+# If the user were using GNU make now, this file would not get used
+# because GNU make uses a make file named "GNUmakefile" in preference
+# to "Makefile" if it exists. PostgreSQL is shipped with a
+# "GNUmakefile". If the user hasn't run the configure script yet, the
+# GNUmakefile won't exist yet, so we catch that case as well.
+
+
+all install clean dep depend distclean maintainer-clean:
+ @if ! [ -f GNUmakefile ] ; then \
+ echo "You need to run the \`configure' program first. See the file"; \
+ echo "\`INSTALL' for installation instructions." ; \
+ false ; \
+ fi
+ @IFS=':' ; \
+ for dir in $$PATH; do \
+ for prog in gmake gnumake make; do \
+ if [ -f $$dir/$$prog ] && ( $$dir/$$prog --version | grep GNU >/dev/null 2>&1 ) ; then \
+ GMAKE=$$dir/$$prog; \
+ break 2; \
+ fi; \
+ done; \
+ done; \
+ \
+ if [ x"$${GMAKE+set}" = xset ]; then \
+ echo "Using GNU make found at $${GMAKE}"; \
+ $${GMAKE} $@ ; \
+ else \
+ echo "You must use GNU make to build PostgreSQL." ; \
+ false; \
+ fi