blob: f8398d78e18253c904991175188d22dbce3a218d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
% mmfont.mf -- malayalam font driver file
% (c) 1993 Jeroen Hellingman
% last edit: 24-JAN-1993
% if you never want to use traditional script, uncomment the following
% line to save processing time and disk-space.
% newfont := 1;
input mmcoding.mf; % get the glyph-positions in the font
input mmtest.mf; % do we have some characters to be tested?
% generate the charactershapes:
if known newfont and unknown subfont :
input mmvowels.mf;
input mmcons.mf;
input mmscons.mf;
input mmsec.mf;
input mmcillu.mf;
input mmconj.mf;
input mmlnums.mf
input mmpunct.mf;
elseif known subfont :
if known newfont :
"No subfont needed when making a font for reformed script";
else :
input mmcons.mf;
input mmconj.mf;
input mmrconj.mf;
input mmcvconj.mf;
fi
else : % generate everything
input mmvowels.mf;
input mmcons.mf;
input mmscons.mf;
input mmsec.mf;
input mmcillu.mf;
input mmconj.mf;
input mmrconj.mf;
input mmcvconj.mf;
input mmnums.mf;
input mmlnums.mf
input mmpunct.mf;
fi;
end.
|