]> git.saurik.com Git - wxWidgets.git/blob - utils/ogl/distrib/zipogl.bat
Small fixes
[wxWidgets.git] / utils / ogl / distrib / zipogl.bat
1 @echo off
2 rem Zip up an external distribution of OGL
3
4 if "%1" == "" goto usage
5 if "%2" == "" goto usage
6 echo About to archive an external OGL distribution:
7 echo From %1
8 echo To %2\ogl.zip
9 echo CTRL-C if this is not correct.
10 inkey /W4 `Press any key to continue...` %%input
11
12 erase %2\ogl.zip
13 cd %1
14 zip -P %3 %4 %5 %6 %7 %8 %2\ogl.zip @%1\distrib\ogl.rsp
15
16 echo OGL archived.
17 goto end
18
19 :usage
20 echo DOS OGL distribution.
21 echo Usage: zipogl source destination
22 echo e.g. zipogl c:\wx\utils\ogl c:\wx\utils\ogl\deliver
23
24 :end
25
26