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