From eb1789ff11ba89bd28eaca5f81915ffb5472f901 Mon Sep 17 00:00:00 2001 From: mdejong Date: Thu, 6 Jun 2002 19:45:46 +0000 Subject: * unix/dltest/Makefile.in: Remove hard coded CFLAGS=-g and add CFLAGS_DEBUG, CFLAGS_OPTIMIZE, and CFLAGS_DEFAULT varaibles. [Tcl bug 565488] --- ChangeLog | 6 ++++++ unix/dltest/Makefile.in | 7 +++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fb90bac..2b5aa6a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-06-06 Mo DeJong + + * 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 * 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} -- cgit v0.12