diff options
author | escoffon <escoffon@noemail.net> | 1998-08-03 15:49:47 (GMT) |
---|---|---|
committer | escoffon <escoffon@noemail.net> | 1998-08-03 15:49:47 (GMT) |
commit | 24ce3a99dde1485fbcaf12bd039049779bde86c1 (patch) | |
tree | 014f9f4c0ca2954df9efdeeee827d82ce3643e6a | |
parent | b4e687d4ea993498d7f59fde4bb8ccefa5228951 (diff) | |
download | tcl-24ce3a99dde1485fbcaf12bd039049779bde86c1.zip tcl-24ce3a99dde1485fbcaf12bd039049779bde86c1.tar.gz tcl-24ce3a99dde1485fbcaf12bd039049779bde86c1.tar.bz2 |
modified the support for specifying a build directory to be consistent with
the Tk makefile.vc
FossilOrigin-Name: 99855fba4aa9891520b9cad748d6233ceda53d38
-rw-r--r-- | win/makefile.vc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index a989ce6..cb49fba 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -64,12 +64,14 @@ VERSION = 80 BINROOT = . !IF "$(NODEBUG)" == "1" -TMPDIR = $(BINROOT)\Release +TMPDIRNAME = Release DBGX = !ELSE -TMPDIR = $(BINROOT)\Debug +TMPDIRNAME = Debug DBGX = d !ENDIF +TMPDIR = $(BINROOT)\$(TMPDIRNAME) +OUTDIRNAME = $(TMPDIRNAME) OUTDIR = $(TMPDIR) TCLLIB = $(OUTDIR)\$(NAMEPREFIX)$(VERSION)$(DBGX).lib |