summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authordavygrvy <davygrvy@pobox.com>2001-11-20 04:23:53 (GMT)
committerdavygrvy <davygrvy@pobox.com>2001-11-20 04:23:53 (GMT)
commit9905de963f7c4287ccb2539884bd1186b5cbad06 (patch)
tree5c03a7450febc39b97e0339ef68c9a4050b00b4b /win
parent78fe2e038888829050d069a35032288d3da160d5 (diff)
downloadtcl-9905de963f7c4287ccb2539884bd1186b5cbad06.zip
tcl-9905de963f7c4287ccb2539884bd1186b5cbad06.tar.gz
tcl-9905de963f7c4287ccb2539884bd1186b5cbad06.tar.bz2
Added useful comments.
Diffstat (limited to 'win')
-rwxr-xr-xwin/buildall.vc.bat21
1 files changed, 14 insertions, 7 deletions
diff --git a/win/buildall.vc.bat b/win/buildall.vc.bat
index d3ecc66..2302881 100755
--- a/win/buildall.vc.bat
+++ b/win/buildall.vc.bat
@@ -1,12 +1,19 @@
@echo off
-if "%MSVCDir%" == "" call c:\dev\devstudio60\vc98\bin\vcvars32.bat
+rem
+rem This is an example batchfile for building everything. Please
+rem edit this (or make your own) for your needs and wants using
+rem the instructions for calling makefile.vc found in makefile.vc
+rem
+rem RCS: @(#) $Id: buildall.vc.bat,v 1.2 2001/11/20 04:23:53 davygrvy Exp $
+
+if "%MSVCDir%" == "" call c:\progra~1\micros~4\vc98\bin\vcvars32.bat
set INSTALLDIR=d:\tclTestArea
-nmake -nologo -f makefile.vc %1 release winhelp OPTS=none
-nmake -nologo -f makefile.vc %1 release OPTS=static
-nmake -nologo -f makefile.vc %1 core dlls OPTS=static,msvcrt
-nmake -nologo -f makefile.vc %1 core OPTS=static,threads
-nmake -nologo -f makefile.vc %1 dlls OPTS=static,msvcrt,threads
-nmake -nologo -f makefile.vc %1 shell OPTS=threads
+nmake -nologo -f makefile.vc release winhelp OPTS=none
+nmake -nologo -f makefile.vc release OPTS=static
+nmake -nologo -f makefile.vc core dlls OPTS=static,msvcrt
+nmake -nologo -f makefile.vc core OPTS=static,threads
+nmake -nologo -f makefile.vc dlls OPTS=static,msvcrt,threads
+nmake -nologo -f makefile.vc shell OPTS=threads
pause