summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authorescoffon <escoffon@noemail.net>1998-07-01 18:03:14 (GMT)
committerescoffon <escoffon@noemail.net>1998-07-01 18:03:14 (GMT)
commitc2e4ce2f943e79c3a6664378e99e9c6d63857112 (patch)
tree741137b9e7922361b0550c26d7b012284759993f /win/makefile.vc
parent6e3c056d608aa203a5249374b56d8b0d3250f021 (diff)
downloadtcl-c2e4ce2f943e79c3a6664378e99e9c6d63857112.zip
tcl-c2e4ce2f943e79c3a6664378e99e9c6d63857112.tar.gz
tcl-c2e4ce2f943e79c3a6664378e99e9c6d63857112.tar.bz2
- dropped the .\ from temp dir name
- .pch file is now generated in temp dir, not in . FossilOrigin-Name: 825f498d10cb374a6cd31e808b24275bcd5df158
Diffstat (limited to 'win/makefile.vc')
-rw-r--r--win/makefile.vc8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 7a8dd66..08d7f22 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -57,10 +57,10 @@ NODEBUG = 1
VERSION = 80
!IF "$(NODEBUG)" == "1"
-TMPDIR = .\Release
+TMPDIR = Release
DBGX =
!ELSE
-TMPDIR = .\Debug
+TMPDIR = Debug
DBGX = d
!ENDIF
OUTDIR = $(TMPDIR)
@@ -224,7 +224,7 @@ cdebug = -Z7 -Od -WX
!ENDIF
# declarations common to all compiler options
-ccommon = -c -W3 -nologo -YX -Dtry=__try -Dexcept=__except
+ccommon = -c -W3 -nologo -YX -Fp$(TMPDIR)\ -Dtry=__try -Dexcept=__except
!IF "$(MACHINE)" == "IX86"
cflags = $(ccommon) -D_X86_=1
@@ -388,7 +388,7 @@ clean:
-@del $(OUTDIR)\*.dll
-@del $(OUTDIR)\*.exe
-@del $(OUTDIR)\*.pdb
- -@del *.pch
+ -@del $(TMPDIR)\*.pch
-@del $(TMPDIR)\*.obj
-@del $(TMPDIR)\*.res
-@del $(TMPDIR)\*.def