summaryrefslogtreecommitdiffstats
path: root/unix/dltest
diff options
context:
space:
mode:
authormdejong <mdejong@noemail.net>2002-06-06 19:45:46 (GMT)
committermdejong <mdejong@noemail.net>2002-06-06 19:45:46 (GMT)
commitc3ed124f85242dd4c337e8c26b68f0440fd767b2 (patch)
tree04165fe0f0b1470b526ffddad0cddb31c3a00199 /unix/dltest
parentbe733a7b847b48a619d0b65f5aa2a40c20d8c49d (diff)
downloadtcl-c3ed124f85242dd4c337e8c26b68f0440fd767b2.zip
tcl-c3ed124f85242dd4c337e8c26b68f0440fd767b2.tar.gz
tcl-c3ed124f85242dd4c337e8c26b68f0440fd767b2.tar.bz2
* unix/dltest/Makefile.in: Remove hard coded CFLAGS=-g
and add CFLAGS_DEBUG, CFLAGS_OPTIMIZE, and CFLAGS_DEFAULT varaibles. [Tcl bug 565488] FossilOrigin-Name: 1b1f2ad6ef4af1a63bce1564eadd78ae4cbd6179
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 5759915..5d0776e 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.9 2001/12/19 11:03:20 mdejong Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.10 2002/06/06 19:45:47 mdejong Exp $
TCL_DBGX = @TCL_DBGX@
CC = @CC@
@@ -14,7 +14,10 @@ SHLIB_SUFFIX = @SHLIB_SUFFIX@
SRC_DIR = @srcdir@
TCL_VERSION= @TCL_VERSION@
-CFLAGS = -g
+CFLAGS_DEBUG = @CFLAGS_DEBUG@
+CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@
+
+CFLAGS = @CFLAGS@ @CFLAGS_DEFAULT@
CC_SWITCHES = $(CFLAGS) -I${SRC_DIR}/../../generic -DTCL_MEM_DEBUG \
${SHLIB_CFLAGS} -DUSE_TCL_STUBS ${AC_FLAGS}