diff options
author | davidg <davidg> | 2000-10-31 01:20:08 (GMT) |
---|---|---|
committer | davidg <davidg> | 2000-10-31 01:20:08 (GMT) |
commit | 71fa6d71a0c499d298b8a8d1db3eb00994bf44c6 (patch) | |
tree | 05262054f7e12411f78943a3c15471e201db808c /win/makefile.vc | |
parent | 0834d8e227e49b1763a682c9602d59fcea0bf9be (diff) | |
download | tcl-71fa6d71a0c499d298b8a8d1db3eb00994bf44c6.zip tcl-71fa6d71a0c499d298b8a8d1db3eb00994bf44c6.tar.gz tcl-71fa6d71a0c499d298b8a8d1db3eb00994bf44c6.tar.bz2 |
2000-10-30 David Gravereaux <davygrvy@ajubasolutions.com>
* win/configure.in:
* win/Makefile.in:
* win/makefile.vc:
* win/tcl.rc:
* win/tclsh.rc: Added logic to derive filenames better in the resource
scripts based on compile options.
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index c867551..7672f2d 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -6,7 +6,7 @@ # Copyright (c) 1995-1996 Sun Microsystems, Inc. # Copyright (c) 1998-1999 by Scriptics Corporation. # -# RCS: @(#) $Id: makefile.vc,v 1.55 2000/09/28 06:35:40 hobbs Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.56 2000/10/31 01:20:09 davidg Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -514,7 +514,11 @@ $(GENERICDIR)\regguts.h: $(GENERICDIR)\regcustom.h {$(WINDIR)}.rc{$(TMPDIR)}.res: $(rc32) -fo $@ -r -i $(GENERICDIR) -i $(WINDIR) -D__WIN32__ \ - $(TCL_DEFINES) $< + $(TCL_DEFINES) \ +!if "$(NODEBUG)" == "0" + -d DEBUG \ +!endif + $< clean: -@$(RM) $(OUTDIR)\*.exp |