summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorescoffon <escoffon>1998-07-01 18:03:15 (GMT)
committerescoffon <escoffon>1998-07-01 18:03:15 (GMT)
commita1ba6819992c6e968b8e5f36c37523f6966e1250 (patch)
tree741137b9e7922361b0550c26d7b012284759993f /win
parent4574ec8c1da94b6a01b0de02a13e432135a318b9 (diff)
downloadtcl-a1ba6819992c6e968b8e5f36c37523f6966e1250.zip
tcl-a1ba6819992c6e968b8e5f36c37523f6966e1250.tar.gz
tcl-a1ba6819992c6e968b8e5f36c37523f6966e1250.tar.bz2
- dropped the .\ from temp dir name
- .pch file is now generated in temp dir, not in .
Diffstat (limited to 'win')
-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