From: Marc G. Fournier Date: Tue, 20 Aug 1996 04:10:35 +0000 (+0000) Subject: i X-Git-Tag: PG95-1_08~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7e7f0c490211227e90d0797869ae4dfc1fbfe20b;p=postgresql i Improvements to Makefiles to compensate for errors in compiling From: bryanh@giraffe.netgate.net (Bryan Henderson) --- diff --git a/src/Makefile b/src/Makefile index 0648ccc014..fdf944df96 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; \