diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-20 04:10:35 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-20 04:10:35 +0000 |
commit | 7e7f0c490211227e90d0797869ae4dfc1fbfe20b (patch) | |
tree | 68db6e5ce90cc52029ac593b3e6273034ed1bf3b /src | |
parent | e326648531d748854cdb002ea7077465c61e40e3 (diff) |
i
Improvements to Makefiles to compensate for errors in compiling
From: bryanh@giraffe.netgate.net (Bryan Henderson)
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/src/Makefile b/src/Makefile index 0648ccc014f..fdf944df964 100644 --- a/src/Makefile +++ b/src/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Makefile,v 1.3.2.1 1996/08/19 18:35:17 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Makefile,v 1.3.2.2 1996/08/20 04:10:35 scrappy Exp $ # # NOTES # objdir - location of the objects and generated files (eg. obj) @@ -17,19 +17,6 @@ MKDIR=./mk -include $(MKDIR)/../Makefile.global -SUBDIR= backend libpq - -ifeq ($(USE_TCL), true) -SUBDIR += libpgtcl -endif - -SUBDIR+= bin - -DOC= $(shell ls -ld ../doc) -ifeq ($(DOC), ../doc) -SUBDIR+= ../doc -endif - FIND = find # assuming gnu tar and split here TAR = tar @@ -38,7 +25,17 @@ SPLIT = split ETAGS = etags XARGS = xargs -include mk/postgres.subdir.mk +.DEFAULT all: + $(MAKE) -C backend $@ + $(MAKE) -C libpq $@ +ifeq ($(USE_TCL), true) + $(MAKE) -C libpgtcl $@ +endif + $(MAKE) -C bin $@ +ifeq (../doc, $(wildcard ../doc)) + $(MAKE) -C ../doc $@ +endif + @echo All of Postgres95 is successfully made. Ready to install. TAGS: rm -f TAGS; \ |