rem Zip up an external, generic + Windows distribution of wxWindows 2.0
set src=%wxwin
set dest=%src\deliver
+set wise=0
if "%src" == "" goto usage
if "%dest" == "" goto usage
+if "%1" == "-help" goto usage
+if "%1" == "--help" goto usage
+if "%1" == "/?" goto usage
+if "%1" == "wise" set wise=1
echo About to archive an external wxWindows distribution:
echo From %src
echo To %dest
+if "%wise" == "1" echo with WISE setup creation.
echo CTRL-C if this is not correct.
pause
cd %dest
+Rem Skip WISE setup if wise is 0.
+if "%wise" == "0" goto end
+
rem Unzip the Windows files into 'wx'
mkdir %dest\wx
unzip32 -o ..\wx200msw.zip
unzip32 -o ..\wx200gen.zip
unzip32 -o ..\wx200vc.zip
+unzip32 -o ..\wx200bc.zip
unzip32 -o ..\wx200hlp.zip
+Rem Need Word file, for Remstar DB classes
+unzip32 -o ..\wx200wrd.zip
unzip32 -o ..\glcanvas.zip
unzip32 -o ..\treedraw.zip
unzip32 -o ..\ogl3.zip
unzip32 -o ..\jpeg.zip
-rem unzip32 -o ..\wx200doc.zip
-rem unzip32 -o ..\wx200bc.zip
-rem unzip32 -o ..\wx200cw.zip
-
rem Now delete a few files that are unnecessary
erase /Y *.in *.spec *.guess *.sub mkinstalldirs modules install-sh *.sh
erase /SY Makefile.in
goto end
:usage
-echo DOS wxWindows distribution.
-echo Usage: zipdist source destination
-echo e.g. zipdist d:\wx2\wxWindows d:\wx2\wxWindows\deliver
+echo DOS wxWindows distribution. Zips up all GTK/Motif/MSW/doc files,
+echo and optionally makes a deliver\wx directory and a setup.exe
+echo if you specify 'wise'.
+echo.
+echo Usage: zipdist [wise]
:end