diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-02-19 14:14:40 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-02-19 14:14:40 +0000 |
commit | f6c4d9142a6102753cd31b4da5429d1a96747d1f (patch) | |
tree | a1057ec691e329843d4cb142bc2d1435f101cf20 /src | |
parent | d250ead6544ba3b76e7c033f7bd214bd68c78a0e (diff) | |
download | postgresql-f6c4d9142a6102753cd31b4da5429d1a96747d1f.tar.gz postgresql-f6c4d9142a6102753cd31b4da5429d1a96747d1f.zip |
Didn't *quite* work the way I thought it would...default'd to clean,
not make all :( Fixed...
Diffstat (limited to 'src')
-rw-r--r-- | src/GNUmakefile.in | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/src/GNUmakefile.in b/src/GNUmakefile.in index dba8ccffba6..d0a2273fd66 100644 --- a/src/GNUmakefile.in +++ b/src/GNUmakefile.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.6 1997/02/19 14:03:28 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.7 1997/02/19 14:14:40 scrappy Exp $ # #------------------------------------------------------------------------- @@ -23,6 +23,30 @@ SPLIT = @split@ ETAGS = @etags@ XARGS = @xargs@ +all: + @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 utils all + $(MAKE) -C backend all + $(MAKE) -C libpq all +ifeq ($(HAVE_Cplusplus), true) + $(MAKE) -C libpq++ all +endif +ifeq ($(USE_TCL), true) + $(MAKE) -C libpgtcl all +endif + $(MAKE) -C bin all +ifneq ($(wildcard man), ) + $(MAKE) -C man all +endif + @if test $@. = all. -o $@. = .; then \ + echo All of PostgreSQL is successfully made. Ready to install. ;\ + fi + clean: @if test $(PORTNAME) = UNDEFINED; then \ echo You must set the PORTNAME value in Makefile.global before \ |