~ubuntu-branches/ubuntu/precise/vflib3/precise

« back to all changes in this revision

Viewing changes to ascii-jtex/eKanji/tfm/mktfm

  • Committer: Bazaar Package Importer
  • Author(s): Masayuki Hatta
  • Date: 2002-04-15 12:10:24 UTC
  • Revision ID: james.westby@ubuntu.com-20020415121024-cann32wucyfbq22f
Tags: upstream-3.6.12
ImportĀ upstreamĀ versionĀ 3.6.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
 
 
4
# TFM
 
5
HTFM="ekan1000.tfm  ekan1001.tfm  ekan1002.tfm  ekan1003.tfm  ekan1004.tfm \
 
6
      ekan2000.tfm  ekan2001.tfm  ekan2002.tfm  ekan2003.tfm  ekan2004.tfm \
 
7
      ekan2005.tfm  ekan2006.tfm  ekan2007.tfm  ekan2008.tfm \
 
8
      ekan3000.tfm  ekan3001.tfm  ekan3002.tfm  ekan3003.tfm  ekan3004.tfm \
 
9
      ekan3005.tfm  ekan3006.tfm  ekan3007.tfm  ekan3008.tfm  "
 
10
 
 
11
VTFM="tekan1000.tfm tekan1001.tfm tekan1002.tfm tekan1003.tfm tekan1004.tfm \
 
12
      tekan2000.tfm tekan2001.tfm tekan2002.tfm tekan2003.tfm tekan2004.tfm \
 
13
      tekan2005.tfm tekan2006.tfm tekan2007.tfm tekan2008.tfm \
 
14
      tekan3000.tfm tekan3001.tfm tekan3002.tfm tekan3003.tfm tekan3004.tfm \
 
15
      tekan3005.tfm tekan3006.tfm tekan3007.tfm tekan3008.tfm  "
 
16
 
 
17
 
 
18
# PL to TFM (for JFM)
 
19
PLTOTF=pltotf-j
 
20
 
 
21
 
 
22
 
 
23
for tfm in ${HTFM}
 
24
do
 
25
        echo Making ${tfm}...
 
26
        ${PLTOTF} ekan.pl ${tfm}
 
27
done
 
28
for tfm in ${VTFM}
 
29
do
 
30
        echo Making ${tfm}...
 
31
        ${PLTOTF} tekan.pl ${tfm}
 
32
done
 
33
echo done.