summaryrefslogtreecommitdiff
path: root/GNUmakefile.in
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-06-06 22:01:15 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-06-06 22:01:15 +0000
commit5b9d0d9a5cc223e2d875b477a7416851f9f9b564 (patch)
treef8391a6ed2be780938b57786f93b6cda814cc231 /GNUmakefile.in
parent42ad25fcd139253912dcee8628f866fbf023ae27 (diff)
downloadpostgresql-5b9d0d9a5cc223e2d875b477a7416851f9f9b564.tar.gz
Moved configure script from src/ to the top level directory. Moved
configuration helper things into config/ dir. Adjusted some relative paths in makefiles.
Diffstat (limited to 'GNUmakefile.in')
-rw-r--r--GNUmakefile.in30
1 files changed, 30 insertions, 0 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in
new file mode 100644
index 0000000000..f54997da42
--- /dev/null
+++ b/GNUmakefile.in
@@ -0,0 +1,30 @@
+#
+# PostgreSQL top level makefile
+#
+# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.1 2000/06/06 22:00:45 petere Exp $
+#
+
+srcdir = @srcdir@
+VPATH = @srcdir@
+
+top_srcdir = @top_srcdir@
+top_builddir = .
+
+
+all:
+ make -C src all
+ @echo "All of PostgreSQL successfully made. Ready to install."
+
+install:
+ make -C src install
+ @cat $(srcdir)/register.txt
+
+clean:
+ make -C src clean
+
+distclean:
+ make -C src distclean
+ -rm -f config.cache config.log config.status GNUmakefile
+
+
+.PHONY: all install clean distclean