56d349220f
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
29 lines
520 B
Batchfile
Executable File
29 lines
520 B
Batchfile
Executable File
@echo off
|
|
rem Zip up a source distribution of Tex2RTF and associated apps.
|
|
set src=c:\wx2dev\wxWindows\utils\tex2rtf
|
|
set dest=%src\deliver
|
|
if "%src" == "" goto usage
|
|
if "%dest" == "" goto usage
|
|
echo About to archive Tex2RTF
|
|
echo From %src
|
|
echo To %dest
|
|
echo CTRL-C if this is not correct.
|
|
pause
|
|
|
|
erase %dest\tex2rtf_src.zip
|
|
|
|
cd %src
|
|
echo Zipping...
|
|
|
|
zip32 -@ %dest\tex2rtf_src.zip < %src\tex2rtf\distrib\src.rsp
|
|
|
|
cd %dest
|
|
|
|
echo Tex2RTF source archived.
|
|
goto end
|
|
|
|
:usage
|
|
echo Tex2RTF source distribution.
|
|
|
|
:end
|