diff options
author | davygrvy <davygrvy@pobox.com> | 2002-03-27 21:15:43 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2002-03-27 21:15:43 (GMT) |
commit | 64498b577d1955dd0f2b6458753a1a4ead7c94ca (patch) | |
tree | 7d275598a37046675c0e975116a22aadfde9af9e /win/buildall.vc.bat | |
parent | e3cea75b71cf20329aa594fbd4c50fd84c3939e7 (diff) | |
download | tcl-64498b577d1955dd0f2b6458753a1a4ead7c94ca.zip tcl-64498b577d1955dd0f2b6458753a1a4ead7c94ca.tar.gz tcl-64498b577d1955dd0f2b6458753a1a4ead7c94ca.tar.bz2 |
* win/.cvsignore:
* win/buildall.vc.bat:
* win/coffbase.txt:
* win/makefile.vc:
* win/nmakehlp.c (new):
* win/rules.vc: First draft fix for [Bug 527941]. More changes
need to done to the makehelp target to get to stop leaving build
files in the tools/ directory. This does not address the syntax
errors in the man files. Having the contents of tcl.hpj(.in)
inside makefile.vc allows for version numbers to be replaced with
macros.
The new nmakehlp.c is built by rules.vc in preprocessing and removes
the need to use tricky shell syntax that wasn't compatible on Win9x
systems. This is a first draft repair for [Bug 533862].
Diffstat (limited to 'win/buildall.vc.bat')
-rwxr-xr-x | win/buildall.vc.bat | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/win/buildall.vc.bat b/win/buildall.vc.bat index 74c6e29..c7709f5 100755 --- a/win/buildall.vc.bat +++ b/win/buildall.vc.bat @@ -4,13 +4,13 @@ :: edit this (or make your own) for your needs and wants using :: the instructions for calling makefile.vc found in makefile.vc :: -:: RCS: @(#) $Id: buildall.vc.bat,v 1.3 2002/02/20 19:06:53 davygrvy Exp $ +:: RCS: @(#) $Id: buildall.vc.bat,v 1.4 2002/03/27 21:15:43 davygrvy Exp $ -echo Sit back and have a couple cups of coffee while this grinds through ;) +echo Sit back and have a cup of coffee while this grinds through ;) echo You asked for *everything*, remember? echo. -if "%MSVCDir%" == "" call C:\progra~1\micros~4\vc98\bin\vcvars32.bat +if "%MSVCDir%" == "" call C:\dev\devstudio60\vc98\bin\vcvars32.bat set INSTALLDIR=C:\progra~1\tcl nmake -nologo -f makefile.vc release winhelp OPTS=none @@ -28,7 +28,8 @@ if errorlevel 1 goto error goto end :error -echo **BOOM!** +echo *** BOOM! *** :end +echo done! pause |