diff options
author | mdejong <mdejong@noemail.net> | 2001-05-11 23:02:17 (GMT) |
---|---|---|
committer | mdejong <mdejong@noemail.net> | 2001-05-11 23:02:17 (GMT) |
commit | 837ff2820206e2f0ec4af4d4d0ceed42b9a9ab59 (patch) | |
tree | fc14ce1d13ff13eb1bd838f2b5112d0b0d2a780a /win/Makefile.in | |
parent | bb1cd0944cb14337b51ffdfe55b03afec3d36098 (diff) | |
download | tcl-837ff2820206e2f0ec4af4d4d0ceed42b9a9ab59.zip tcl-837ff2820206e2f0ec4af4d4d0ceed42b9a9ab59.tar.gz tcl-837ff2820206e2f0ec4af4d4d0ceed42b9a9ab59.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@.
FossilOrigin-Name: b415d56ee09857901ec51f29911fd70c611acc31
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@ |