]> git.saurik.com Git - wxWidgets.git/blame - utils/tex2rtf/distrib/zipsrc.bat
Don't build IPC version of HelpView on Mac Classic
[wxWidgets.git] / utils / tex2rtf / distrib / zipsrc.bat
CommitLineData
56d34922
JS
1@echo off
2rem Zip up a source distribution of Tex2RTF and associated apps.
3set src=c:\wx2dev\wxWindows\utils\tex2rtf
4set dest=%src\deliver
5if "%src" == "" goto usage
6if "%dest" == "" goto usage
7echo About to archive Tex2RTF
8echo From %src
9echo To %dest
10echo CTRL-C if this is not correct.
11pause
12
13erase %dest\tex2rtf_src.zip
14
15cd %src
16echo Zipping...
17
18zip32 -@ %dest\tex2rtf_src.zip < %src\tex2rtf\distrib\src.rsp
19
20cd %dest
21
22echo Tex2RTF source archived.
23goto end
24
25:usage
26echo Tex2RTF source distribution.
27
28:end