diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-06-13 09:16:39 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-06-13 09:16:39 +0000 |
commit | 81fa9e0e5620e361aaf0808261195a000aa3df8c (patch) | |
tree | 01a0cc8fa524e73db99761791db4f6c8ac1c3000 /src | |
parent | 37ce95c4297a1b9ca1bbd61aa153a347c15fc310 (diff) | |
download | postgresql-81fa9e0e5620e361aaf0808261195a000aa3df8c.tar.gz postgresql-81fa9e0e5620e361aaf0808261195a000aa3df8c.zip |
in the Directory src/bin/pgtclsh there is a good mechanism to integrate
the
tcl-spec in the Makefile.
The patch in the attachemant does this in the src/interfaces/libpgtcl
too
Thank you
Rudolf Weber
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpgtcl/Makefile.in | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/interfaces/libpgtcl/Makefile.in b/src/interfaces/libpgtcl/Makefile.in index 5e7e75908b9..d722e28b5e5 100644 --- a/src/interfaces/libpgtcl/Makefile.in +++ b/src/interfaces/libpgtcl/Makefile.in @@ -6,7 +6,7 @@ # Copyright (c) 1994, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.41 2000/06/06 22:01:01 petere Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.42 2000/06/13 09:16:39 momjian Exp $ # #------------------------------------------------------------------------- @@ -19,6 +19,14 @@ include $(SRCDIR)/Makefile.global CFLAGS+= -I$(LIBPQDIR) +# +# Include definitions from the tclConfig.sh file +# +include Makefile.tcldefs +ifeq ($(USE_TK), true) +include Makefile.tkdefs +endif + ifdef KRBVERS CFLAGS+= $(KRBFLAGS) endif @@ -46,6 +54,11 @@ install-headers: beforeinstall-headers libpgtcl.h beforeinstall-headers: -@if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi +Makefile.tcldefs: mkMakefile.tcldefs.sh + /bin/sh mkMakefile.tcldefs.sh + +Makefile.tkdefs: mkMakefile.tkdefs.sh + /bin/sh mkMakefile.tkdefs.sh .PHONY: clean |