summaryrefslogtreecommitdiff
path: root/macros/generic/cptex/tex8.bat
blob: f72ca2edf839d9a2d96b67e73172245b1d003634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
if "%1"=="" goto :all
type %1 | sed -f tex8.sed >%1
goto :end

:all
mkdir tex8fmts
copy p:\emtex\texfmts\*.bat tex8fmts
for %%f in (tex8fmts\*.bat) do call %0 %%f
copy p:\emtex\texfmts\*.cmd tex8fmts
for %%f in (tex8fmts\*.cmd) do call %0 %%f
mkdir btex8fmt
copy p:\emtex\btexfmts\*.bat btex8fmt
for %%f in (btex8fmt\*.bat) do call %0 %%f
copy p:\emtex\btexfmts\*.cmd btex8fmt
for %%f in (btex8fmt\*.cmd) do call %0 %%f

:end