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