]>
Commit | Line | Data |
---|---|---|
1 | @echo off | |
2 | rem Zip up an external distribution of OGL | |
3 | set src=d:\wx2\wxWindows\utils\ogl | |
4 | set dest=%src\deliver | |
5 | ||
6 | if "%src" == "" goto usage | |
7 | if "%dest" == "" goto usage | |
8 | echo About to archive an external OGL distribution: | |
9 | echo From %src | |
10 | echo To %dest\ogl.zip | |
11 | echo CTRL-C if this is not correct. | |
12 | inkey /W4 `Press any key to continue...` %%input | |
13 | ||
14 | erase %dest\ogl.zip | |
15 | cd %src | |
16 | zip32 -@ %dest\ogl.zip < %src\distrib\ogl.rsp | |
17 | ||
18 | echo OGL archived. | |
19 | goto end | |
20 | ||
21 | :usage | |
22 | echo DOS OGL distribution. | |
23 | echo Usage: zipogl source destination | |
24 | echo e.g. zipogl c:\wx\utils\ogl c:\wx\utils\ogl\deliver | |
25 | ||
26 | :end | |
27 | ||
28 |