diff options
author | mdejong <mdejong> | 2002-06-06 19:45:46 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2002-06-06 19:45:46 (GMT) |
commit | eb1789ff11ba89bd28eaca5f81915ffb5472f901 (patch) | |
tree | 04165fe0f0b1470b526ffddad0cddb31c3a00199 | |
parent | 2cf73539b4bb1803b23b882f52df6c21c5543436 (diff) | |
download | tcl-eb1789ff11ba89bd28eaca5f81915ffb5472f901.zip tcl-eb1789ff11ba89bd28eaca5f81915ffb5472f901.tar.gz tcl-eb1789ff11ba89bd28eaca5f81915ffb5472f901.tar.bz2 |
* unix/dltest/Makefile.in: Remove hard coded CFLAGS=-g
and add CFLAGS_DEBUG, CFLAGS_OPTIMIZE, and
CFLAGS_DEFAULT varaibles. [Tcl bug 565488]
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | unix/dltest/Makefile.in | 7 |
2 files changed, 11 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2002-06-06 Mo DeJong <mdejong@users.sourceforge.net> + + * unix/dltest/Makefile.in: Remove hard coded CFLAGS=-g + and add CFLAGS_DEBUG, CFLAGS_OPTIMIZE, and + CFLAGS_DEFAULT varaibles. [Tcl bug 565488] + 2002-06-06 Don Porter <dgp@users.sourceforge.net> * tests/tcltest.test: Corrections to test suite so that tests 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} |