aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-10-02 00:59:35 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-10-02 00:59:35 +0000
commitbf125ca401c755babc70eaa7a358de857e52f98c (patch)
tree027894444b9e6b98fbb2650abb7e299384cb4351 /src
parent87d703f4cd11624702ce359b3306f14f876c24e7 (diff)
downloadpostgresql-bf125ca401c755babc70eaa7a358de857e52f98c.tar.gz
postgresql-bf125ca401c755babc70eaa7a358de857e52f98c.zip
Bring in a "registration" file to be printed out after the user has
performed a 'make install' Uses 'more', which should be standard across all systems, I hope?
Diffstat (limited to 'src')
-rw-r--r--src/GNUmakefile.in19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/GNUmakefile.in b/src/GNUmakefile.in
index 57a77664a2e..15283b54ae7 100644
--- a/src/GNUmakefile.in
+++ b/src/GNUmakefile.in
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.16 1997/08/16 20:56:25 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.17 1997/10/02 00:59:35 scrappy Exp $
#
#-------------------------------------------------------------------------
@@ -50,6 +50,23 @@ endif
echo All of PostgreSQL is successfully made. Ready to install. ;\
fi
+install:
+ @if test $(PORTNAME) = UNDEFINED; then \
+ echo You must set the PORTNAME value in Makefile.global before \
+ you can build Postgres. ;\
+ false ;\
+ else true;\
+ fi
+ $(MAKE) -C lextest install
+ $(MAKE) -C utils install
+ $(MAKE) -C backend install
+ $(MAKE) -C interfaces install
+ $(MAKE) -C bin install
+ifneq ($(wildcard man), )
+ $(MAKE) -C man install
+endif
+ more -e ../register.txt
+
clean:
@if test $(PORTNAME) = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \