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?
This commit is contained in:
Marc G. Fournier 1997-10-02 00:59:35 +00:00
parent 87d703f4cd
commit bf125ca401
2 changed files with 21 additions and 1 deletions

3
register.txt Normal file
View File

@ -0,0 +1,3 @@
This is a dummy file...

View File

@ -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 \