summaryrefslogtreecommitdiffstats
path: root/unix/dltest/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'unix/dltest/Makefile.in')
-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}