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