|
7 | 7 | #
|
8 | 8 | #
|
9 | 9 | # IDENTIFICATION
|
10 |
| -# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.16 1997/08/16 20:56:25 scrappy Exp $ |
| 10 | +# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.17 1997/10/02 00:59:35 scrappy Exp $ |
11 | 11 | #
|
12 | 12 | #-------------------------------------------------------------------------
|
13 | 13 |
|
|
50 | 50 | echo All of PostgreSQL is successfully made. Ready to install. ;\
|
51 | 51 | fi
|
52 | 52 |
|
| 53 | +install: |
| 54 | +@if test $(PORTNAME) = UNDEFINED; then \ |
| 55 | +echo You must set the PORTNAME value in Makefile.global before \ |
| 56 | +you can build Postgres. ;\ |
| 57 | +false ;\ |
| 58 | +else true;\ |
| 59 | +fi |
| 60 | +$(MAKE) -C lextest install |
| 61 | +$(MAKE) -C utils install |
| 62 | +$(MAKE) -C backend install |
| 63 | +$(MAKE) -C interfaces install |
| 64 | +$(MAKE) -C bin install |
| 65 | +ifneq ($(wildcard man), ) |
| 66 | +$(MAKE) -C man install |
| 67 | +endif |
| 68 | +more -e ../register.txt |
| 69 | + |
53 | 70 | clean:
|
54 | 71 | @if test $(PORTNAME) = UNDEFINED; then \
|
55 | 72 | echo You must set the PORTNAME value in Makefile.global before \
|
|