1998-05-22 19:57:05 +00:00
|
|
|
@echo off
|
|
|
|
rem Zip up an external, generic + Windows distribution of wxWindows 2.0
|
1998-08-07 23:52:45 +00:00
|
|
|
set src=d:\wx2\wxWindows
|
|
|
|
set dest=%src\deliver
|
|
|
|
if "%src" == "" goto usage
|
|
|
|
if "%dest" == "" goto usage
|
1998-05-22 19:57:05 +00:00
|
|
|
echo About to archive an external wxWindows distribution:
|
1998-08-07 23:52:45 +00:00
|
|
|
echo From %src
|
1998-09-17 09:58:52 +00:00
|
|
|
echo To %dest
|
1998-05-22 19:57:05 +00:00
|
|
|
echo CTRL-C if this is not correct.
|
|
|
|
pause
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
erase %dest\wx200*.zip
|
1998-05-22 19:57:05 +00:00
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
cd %src
|
1998-05-22 19:57:05 +00:00
|
|
|
echo Zipping...
|
1998-08-07 23:52:45 +00:00
|
|
|
zip32 -@ %dest\wx200gen.zip < %src\distrib\msw\generic.rsp
|
|
|
|
zip32 -@ %dest\wx200msw.zip < %src\distrib\msw\msw.rsp
|
|
|
|
zip32 -@ %dest\wx200gtk.zip < %src\distrib\msw\gtk.rsp
|
1998-09-06 14:52:16 +00:00
|
|
|
zip32 -@ %dest\wx200stubs.zip < %src\distrib\msw\stubs.rsp
|
1998-09-17 09:58:52 +00:00
|
|
|
zip32 -@ %dest\wx200mot.zip < %src\distrib\msw\motif.rsp
|
1998-08-07 23:52:45 +00:00
|
|
|
zip32 -@ %dest\wx200doc.zip < %src\distrib\msw\docsrc.rsp
|
1998-05-22 19:57:05 +00:00
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
zip32 -@ %dest\wx200hlp.zip < %src\distrib\msw\wx_hlp.rsp
|
|
|
|
zip32 -@ %dest\wx200htm.zip < %src\distrib\msw\wx_html.rsp
|
|
|
|
zip32 -@ %dest\wx200pdf.zip < %src\distrib\msw\wx_pdf.rsp
|
1998-05-22 19:57:05 +00:00
|
|
|
|
1998-11-08 22:35:18 +00:00
|
|
|
zip32 -@ %dest\ogl3.zip < %src\utils\ogl\distrib\ogl.rsp
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
cd %dest
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
echo wxWindows archived.
|
|
|
|
goto end
|
|
|
|
|
|
|
|
:usage
|
|
|
|
echo DOS wxWindows distribution.
|
1998-07-03 16:39:59 +00:00
|
|
|
echo Usage: zipdist source destination
|
|
|
|
echo e.g. zipdist d:\wx2\wxWindows d:\wx2\wxWindows\deliver
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
:end
|