]> git.saurik.com Git - wxWidgets.git/blob - utils/ogl/distrib/zipogl.bat
readme file, for reading.
[wxWidgets.git] / utils / ogl / distrib / zipogl.bat
1 @echo off
2 rem Zip up an external distribution of OGL
3 set src=d:\wx2\wxWindows
4 set dest=%src\utils\ogl\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\ogl3.zip
11 echo CTRL-C if this is not correct.
12 inkey /W4 `Press any key to continue...` %%input
13
14 erase %dest\ogl3.zip
15 cd %src
16 zip32 -@ %dest\ogl3.zip < %src\utils\ogl\distrib\ogl.rsp
17
18 cd %dest
19
20 echo OGL archived.
21 goto end
22
23 :usage
24 echo DOS OGL distribution.
25 echo Usage: zipogl source destination
26 echo e.g. zipogl d:\wx2\wxWindows d:\wx2\wxWindows\utils\ogl\deliver
27
28 :end
29
30