diff options
author | davygrvy <davygrvy@pobox.com> | 2001-11-13 04:30:51 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2001-11-13 04:30:51 (GMT) |
commit | ae9e4081d57d307c56ac7581dcb3b66f9bb0c4d4 (patch) | |
tree | 24ea29d6b10d4d17797fab75a54b76f6e63bc58b /win/buildall.vc.bat | |
parent | f6db3c09c3120c0b7faf53f759d0b6a872d1690b (diff) | |
download | tcl-ae9e4081d57d307c56ac7581dcb3b66f9bb0c4d4.zip tcl-ae9e4081d57d307c56ac7581dcb3b66f9bb0c4d4.tar.gz tcl-ae9e4081d57d307c56ac7581dcb3b66f9bb0c4d4.tar.bz2 |
* win/buildall.vc.bat(new):
* win/makefile.vc: Small fix with deriving the "OriginalFilename"
string in the .rc scripts. Added a quick batchfile for building
the entire thing.
Diffstat (limited to 'win/buildall.vc.bat')
-rwxr-xr-x | win/buildall.vc.bat | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/win/buildall.vc.bat b/win/buildall.vc.bat new file mode 100755 index 0000000..d3ecc66 --- /dev/null +++ b/win/buildall.vc.bat @@ -0,0 +1,12 @@ +@echo off + +if "%MSVCDir%" == "" call c:\dev\devstudio60\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 +pause |