1998-07-18 17:57:52 -04:00
|
|
|
@echo off
|
|
|
|
rem Zip up an external distribution of OGL
|
1998-09-16 17:44:17 -04:00
|
|
|
set src=d:\wx2\wxWindows
|
|
|
|
set dest=%src\utils\ogl\deliver
|
1998-07-18 17:57:52 -04:00
|
|
|
|
1998-08-07 19:52:45 -04:00
|
|
|
if "%src" == "" goto usage
|
|
|
|
if "%dest" == "" goto usage
|
1998-07-18 17:57:52 -04:00
|
|
|
echo About to archive an external OGL distribution:
|
1998-08-07 19:52:45 -04:00
|
|
|
echo From %src
|
1998-09-16 17:44:17 -04:00
|
|
|
echo To %dest\ogl3.zip
|
1998-07-18 17:57:52 -04:00
|
|
|
echo CTRL-C if this is not correct.
|
|
|
|
inkey /W4 `Press any key to continue...` %%input
|
|
|
|
|
1998-09-16 17:44:17 -04:00
|
|
|
erase %dest\ogl3.zip
|
1998-08-07 19:52:45 -04:00
|
|
|
cd %src
|
1998-09-16 17:44:17 -04:00
|
|
|
zip32 -@ %dest\ogl3.zip < %src\utils\ogl\distrib\ogl.rsp
|
|
|
|
|
|
|
|
cd %dest
|
1998-07-18 17:57:52 -04:00
|
|
|
|
|
|
|
echo OGL archived.
|
|
|
|
goto end
|
|
|
|
|
|
|
|
:usage
|
|
|
|
echo DOS OGL distribution.
|
|
|
|
echo Usage: zipogl source destination
|
1998-09-16 17:44:17 -04:00
|
|
|
echo e.g. zipogl d:\wx2\wxWindows d:\wx2\wxWindows\utils\ogl\deliver
|
1998-07-18 17:57:52 -04:00
|
|
|
|
|
|
|
:end
|
|
|
|
|
|
|
|
|