diff options
author | mdejong <mdejong> | 2001-05-11 23:02:18 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-05-11 23:02:18 (GMT) |
commit | d26e64c0ba3b4f316034112f270a073472543cae (patch) | |
tree | fc14ce1d13ff13eb1bd838f2b5112d0b0d2a780a /win/Makefile.in | |
parent | 1fd84bd466e07b5c88b1f036312f10d05e028c4c (diff) | |
download | tcl-d26e64c0ba3b4f316034112f270a073472543cae.zip tcl-d26e64c0ba3b4f316034112f270a073472543cae.tar.gz tcl-d26e64c0ba3b4f316034112f270a073472543cae.tar.bz2 |
* unix/Makefile.in: Add a LDFLAGS variable to the
Makefile instead of directly substing @LDFLAGS@.
* unix/configure: Regen.
* unix/tcl.m4: Fix CFLAGS_DEFAULT so that the name
of a Makefile variable is passed as @CFLAGS@.win/tcl.m4
* win/Makefile.in: Move the setting of CFLAGS
higher up in the Makefile.
* win/configure: Regen.
* win/configure.in: Use dnl to comment out macros
so that they are not accidently expanded.
* win/tcl.m4: Fix CFLAGS_DEFAULT so that the name
of a Makefile variable is passed as @CFLAGS@.
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 7da61c5..8262da0 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.43 2001/03/30 23:45:59 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.44 2001/05/11 23:02:18 mdejong Exp $ VERSION = @TCL_VERSION@ @@ -80,6 +80,13 @@ CFLAGS_WARNING = @CFLAGS_WARNING@ CFLAGS_DEBUG = @CFLAGS_DEBUG@ CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@ +# To change the compiler switches, for example to change from optimization to +# debugging symbols, change the following line: +#CFLAGS = $(CFLAGS_DEBUG) +#CFLAGS = $(CFLAGS_OPTIMIZE) +#CFLAGS = $(CFLAGS_DEBUG) $(CFLAGS_OPTIMIZE) +CFLAGS = @CFLAGS@ + # To enable compilation debugging reverse the comment characters on # one of the following lines. COMPILE_DEBUG_FLAGS = @@ -90,13 +97,6 @@ COMPILE_DEBUG_FLAGS = LDFLAGS_DEBUG = @LDFLAGS_DEBUG@ LDFLAGS_OPTIMIZE = @LDFLAGS_OPTIMIZE@ -# To change the compiler switches, for example to change from optimization to -# debugging symbols, change the following line: -#CFLAGS = $(CFLAGS_DEBUG) -#CFLAGS = $(CFLAGS_OPTIMIZE) -#CFLAGS = $(CFLAGS_DEBUG) $(CFLAGS_OPTIMIZE) -CFLAGS = @CFLAGS@ - # Special compiler flags to use when building man2tcl on Windows. MAN2TCLFLAGS = @MAN2TCLFLAGS@ |