diff options
author | das <das> | 2004-11-12 20:27:28 (GMT) |
---|---|---|
committer | das <das> | 2004-11-12 20:27:28 (GMT) |
commit | fcf4caf8ae7e9763a64b2290db20aeedd438b99e (patch) | |
tree | a820ddeceb34a1b306987774ae74052dcdded800 /unix/dltest/Makefile.in | |
parent | 15db0cfaf8db72f2cd37a9379f11ccd9efb3ae7d (diff) | |
download | tcl-fcf4caf8ae7e9763a64b2290db20aeedd438b99e.zip tcl-fcf4caf8ae7e9763a64b2290db20aeedd438b99e.tar.gz tcl-fcf4caf8ae7e9763a64b2290db20aeedd438b99e.tar.bz2 |
* generic/tcl.h:
* generic/tclInt.h:
* unix/Makefile.in: include tclConfig.h from tcl.h and install it
as a public header. Normalized compiler include path order to
-I${BUILD_DIR} -I${UNIX_DIR} -I${GENERIC_DIR}.
* unix/dltest/Makefile.in: add ${BUILD_DIR}/.. to include path
to pick up tclConfig.h.
Diffstat (limited to 'unix/dltest/Makefile.in')
-rw-r--r-- | unix/dltest/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/dltest/Makefile.in b/unix/dltest/Makefile.in index 06f4345..378c721 100644 --- a/unix/dltest/Makefile.in +++ b/unix/dltest/Makefile.in @@ -1,7 +1,7 @@ # This Makefile is used to create several test cases for Tcl's load # command. It also illustrates how to take advantage of configuration # exported by Tcl to set up Makefiles for shared libraries. -# RCS: @(#) $Id: Makefile.in,v 1.15 2004/09/23 20:02:50 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.16 2004/11/12 20:27:29 das Exp $ TCL_DBGX = @TCL_DBGX@ CC = @CC@ @@ -12,13 +12,14 @@ SHLIB_LD = @SHLIB_LD@ SHLIB_LD_LIBS = @SHLIB_LD_LIBS@ SHLIB_SUFFIX = @SHLIB_SUFFIX@ SRC_DIR = @srcdir@ +BUILD_DIR = @builddir@ TCL_VERSION= @TCL_VERSION@ CFLAGS_DEBUG = @CFLAGS_DEBUG@ CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@ CFLAGS = @CFLAGS@ @CFLAGS_DEFAULT@ -CC_SWITCHES = $(CFLAGS) -I${SRC_DIR}/../../generic -DTCL_MEM_DEBUG \ +CC_SWITCHES = $(CFLAGS) -I${SRC_DIR}/../../generic -I${BUILD_DIR}/.. -DTCL_MEM_DEBUG \ ${SHLIB_CFLAGS} -DUSE_TCL_STUBS ${AC_FLAGS} all: pkga${SHLIB_SUFFIX} pkgb${SHLIB_SUFFIX} pkgc${SHLIB_SUFFIX} pkgd${SHLIB_SUFFIX} pkge${SHLIB_SUFFIX} pkgua${SHLIB_SUFFIX} |