From 4fff70a81983b0c3b449c861ed9222e0475de785 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Thu, 1 Aug 1996 19:46:46 +0000 Subject: [PATCH] Fixes: make TCL conditinal compilation work Submitted by: Dr_George_D_Detlefsen --- src/Makefile | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/Makefile b/src/Makefile index 49b6ba4adc..5f6c4b85c8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -7,14 +7,23 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Makefile,v 1.2 1996/07/20 07:52:36 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Makefile,v 1.3 1996/08/01 19:46:46 scrappy Exp $ # # NOTES # objdir - location of the objects and generated files (eg. obj) # #------------------------------------------------------------------------- -SUBDIR= backend libpq bin ../doc +MKDIR=./mk +-include $(MKDIR)/../Makefile.global + +SUBDIR= backend libpq + +ifeq ($(USE_TCL), true) +SUBDIR += libpgtcl +endif + +SUBDIR+= bin ../doc FIND = find # assuming gnu tar and split here @@ -24,10 +33,6 @@ SPLIT = split ETAGS = etags XARGS = xargs -ifeq ($(USE_TCL), true) -SUBDIR += libpgtcl -endif - include mk/postgres.subdir.mk TAGS: