summaryrefslogtreecommitdiffstats
path: root/unix/dltest
diff options
context:
space:
mode:
authordas <das>2008-03-27 13:41:58 (GMT)
committerdas <das>2008-03-27 13:41:58 (GMT)
commitee33907233fa2dc1ea507d875f1ccdd92b7fd6bf (patch)
tree7beb3b309a5cb3b6e2c41d4d02fe2f8fd115d493 /unix/dltest
parent48293ac42733b2945e7d27a734b388e7fdc858a7 (diff)
downloadtcl-ee33907233fa2dc1ea507d875f1ccdd92b7fd6bf.zip
tcl-ee33907233fa2dc1ea507d875f1ccdd92b7fd6bf.tar.gz
tcl-ee33907233fa2dc1ea507d875f1ccdd92b7fd6bf.tar.bz2
* unix/dltest/Makefile.in: support use of LDFLAGS in SHLIB_LD.
Diffstat (limited to 'unix/dltest')
-rw-r--r--unix/dltest/Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/unix/dltest/Makefile.in b/unix/dltest/Makefile.in
index 64a60f8..5fed8c8 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.11.2.2 2004/09/23 20:04:07 mdejong Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.11.2.3 2008/03/27 13:41:58 das Exp $
TCL_DBGX = @TCL_DBGX@
CC = @CC@
@@ -16,8 +16,11 @@ TCL_VERSION= @TCL_VERSION@
CFLAGS_DEBUG = @CFLAGS_DEBUG@
CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@
+CFLAGS = @CFLAGS_DEFAULT@ @CFLAGS@
+LDFLAGS_DEBUG = @LDFLAGS_DEBUG@
+LDFLAGS_OPTIMIZE = @LDFLAGS_OPTIMIZE@
+LDFLAGS = @LDFLAGS_DEFAULT@ @LDFLAGS@
-CFLAGS = @CFLAGS@ @CFLAGS_DEFAULT@
CC_SWITCHES = $(CFLAGS) -I${SRC_DIR}/../../generic -DTCL_MEM_DEBUG \
${SHLIB_CFLAGS} -DUSE_TCL_STUBS ${AC_FLAGS}