]> git.saurik.com Git - wxWidgets.git/blame - distrib/msw/zippatch.bat
?kjashdf?aksj
[wxWidgets.git] / distrib / msw / zippatch.bat
CommitLineData
1c6fb09f
JS
1@echo off
2rem Zip up a patch file
3set src=%wxwin
4set dest=%src\deliver
5set wise=0
6
7Rem Set this to the required patch version
c0ab6adf 8set version=02
1c6fb09f
JS
9
10if "%src" == "" goto usage
11if "%dest" == "" goto usage
12echo About to archive patch%version%.zip
13echo From %src
14echo To %dest
15if "%wise" == "1" echo with WISE setup creation.
16echo CTRL-C if this is not correct.
17pause
18
19erase %dest\patch*.zip
20
21cd %src
22echo Zipping...
23
24zip32 -@ %dest\patch%version%.zip < %src\distrib\msw\patch.rsp
25echo wxWindows patch archived.
26
27cd %dest
28
29goto end
30
31:usage
32echo DOS wxWindows patch distribution.
33echo.
34echo Usage: zippatch
35
36:end