diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-28 15:11:30 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-28 15:11:30 (GMT) |
commit | 6eaa3ae71d456b53a285a9bc7feeaad3418f717a (patch) | |
tree | 6fc28d7464a658b044262fa966d2605797fe26b4 /win | |
parent | fc600063743a764221043644b9271ccfb93bced7 (diff) | |
download | tk-6eaa3ae71d456b53a285a9bc7feeaad3418f717a.zip tk-6eaa3ae71d456b53a285a9bc7feeaad3418f717a.tar.gz tk-6eaa3ae71d456b53a285a9bc7feeaad3418f717a.tar.bz2 |
re-do [c42d04b1b4], but now correct ;-(
Diffstat (limited to 'win')
-rwxr-xr-x | win/buildall.vc.bat | 25 |
1 files changed, 2 insertions, 23 deletions
diff --git a/win/buildall.vc.bat b/win/buildall.vc.bat index 3ebba7e..162490e 100755 --- a/win/buildall.vc.bat +++ b/win/buildall.vc.bat @@ -68,31 +68,10 @@ if not %SYMBOLS%.==. set OPTS=symbols nmake -nologo -f makefile.vc release htmlhelp OPTS=%OPTS% %1 if errorlevel 1 goto error -:: Build the static core, dlls and shell. -:: -set OPTS=static -if not %SYMBOLS%.==. set OPTS=symbols,static -nmake -nologo -f makefile.vc release OPTS=%OPTS% %1 -if errorlevel 1 goto error - -:: Build the special static libraries that use the dynamic runtime. +:: Build the static core and shell. :: set OPTS=static,msvcrt if not %SYMBOLS%.==. set OPTS=symbols,static,msvcrt -nmake -nologo -f makefile.vc core OPTS=%OPTS% %1 -if errorlevel 1 goto error - -:: Build the core and shell for thread support. -:: -set OPTS=threads -if not %SYMBOLS%.==. set OPTS=symbols,threads -nmake -nologo -f makefile.vc release OPTS=%OPTS% %1 -if errorlevel 1 goto error - -:: Build the static core and shell. -:: -set OPTS=static,msvcrt,threads -if not %SYMBOLS%.==. set OPTS=symbols,static,msvcrt,threads nmake -nologo -f makefile.vc shell OPTS=%OPTS% %1 if errorlevel 1 goto error @@ -114,7 +93,7 @@ echo usage: echo %0 : builds Tk for all build types (do this first) echo %0 install : installs all the release builds (do this second) echo %0 symbols : builds Tk for all debugging build types -echo %0 symbols install : install all the debug builds +echo %0 symbols install : install all the debug builds. echo. goto out |