summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
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