home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / distrib / msw / zippatch.bat < prev    next >
DOS Batch File  |  2002-08-20  |  828b  |  43 lines

  1. @echo off
  2. rem Zip up a patch file
  3.  
  4. if "%wxwin%" == "" goto usage
  5.  
  6. set src=%wxwin%
  7. set dest=%src%\deliver
  8.  
  9. Rem Set this to the required wxWindows version
  10. set wxversion=2.3.3
  11. Rem Set this to the required patch version
  12. set version=01
  13.  
  14. set patchname=wxWindows-%wxversion%-patch-%version%.zip
  15.  
  16. if "%src" == "" goto usage
  17. if "%dest" == "" goto usage
  18. echo About to create %dest%\%patchname%
  19. echo   From   %src
  20. echo   To     %dest
  21. echo CTRL-C if this is not correct.
  22. pause
  23.  
  24. erase /Q /E %dest%\wxWindows-*-patch*.zip
  25.  
  26. cd %src%
  27. echo Zipping...
  28.  
  29. zip32 -@ %dest%\%patchname% < %src%\distrib\msw\patch.rsp
  30. echo wxWindows patch archived.
  31.  
  32. cd %dest
  33.  
  34. goto end
  35.  
  36. :usage
  37. echo wxWindows patch distribution.
  38. echo.
  39. echo Usage: zippatch
  40. echo You must set WXWIN appropriately before calling this script.
  41.  
  42. :end
  43.