Clean up deleted files.
This commit is contained in:
parent
c5d9b90607
commit
f2517ff88e
@ -1,15 +0,0 @@
|
||||
#! /bin/sh
|
||||
# Compile fonts in the sizes needed by groff.
|
||||
sizes="5 6 7 8 9 10 11 12 14 16 18 20 22 24 28 36"
|
||||
fonts="cmr10 cmti10 cmbx10 cmbxti10 cmtt10 cmex10 cmmi10 cmsy10 cmss10 cmssbx10 cmssi10"
|
||||
mode=cx
|
||||
dpi=300
|
||||
|
||||
for f in $fonts; do
|
||||
for s in $sizes; do
|
||||
virmf "&cm \\mode=$mode; mag=$s/10; batchmode; input $f" >/dev/null
|
||||
mag=`expr $s \* $dpi / 10`
|
||||
gftopk $f.${mag}gf >/dev/null
|
||||
rm $f.${mag}gf
|
||||
done
|
||||
done
|
@ -1,74 +0,0 @@
|
||||
#Copyright (C) 1989, 1990, 1991 Free Software Foundation, Inc.
|
||||
# Written by James Clark (jjc@jclark.uucp)
|
||||
#
|
||||
#This file is part of groff.
|
||||
#
|
||||
#groff is free software; you can redistribute it and/or modify it under
|
||||
#the terms of the GNU General Public License as published by the Free
|
||||
#Software Foundation; either version 1, or (at your option) any later
|
||||
#version.
|
||||
#
|
||||
#groff is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
#WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
#FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
#for more details.
|
||||
#
|
||||
#You should have received a copy of the GNU General Public License along
|
||||
#with groff; see the file LICENSE. If not, write to the Free Software
|
||||
#Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
TFMDIR=tfm
|
||||
GFDIR=gf
|
||||
TFMTODIT=../tfmtodit
|
||||
FONTS=R I B BI CW MI S EX H HI HB
|
||||
SPECIALFLAG=-s
|
||||
|
||||
all: $(FONTS)
|
||||
|
||||
# R is special because it contains \(pl \(eq
|
||||
|
||||
R: texr.map
|
||||
$(TFMTODIT) $(SPECIALFLAG) -g $(GFDIR)/cmr10.300gf \
|
||||
$(TFMDIR)/cmr10.tfm texr.map $@
|
||||
|
||||
# I is special because it contains \(Po
|
||||
|
||||
I: texi.map
|
||||
$(TFMTODIT) $(SPECIALFLAG) -g $(GFDIR)/cmti10.300gf \
|
||||
$(TFMDIR)/cmti10.tfm texi.map $@
|
||||
|
||||
B: texb.map
|
||||
$(TFMTODIT) -g $(GFDIR)/cmbx10.300gf \
|
||||
$(TFMDIR)/cmbx10.tfm texb.map $@
|
||||
|
||||
BI: texi.map
|
||||
$(TFMTODIT) -g $(GFDIR)/cmbxti10.300gf \
|
||||
$(TFMDIR)/cmbxti10.tfm texi.map $@
|
||||
|
||||
# CW is special because it contains "
|
||||
|
||||
CW: textt.map
|
||||
$(TFMTODIT) $(SPECIALFLAG) $(TFMDIR)/cmtt10.tfm textt.map $@
|
||||
|
||||
MI: texmi.map
|
||||
$(TFMTODIT) $(SPECIALFLAG) -k 0177 $(TFMDIR)/cmmi10.tfm texmi.map $@
|
||||
|
||||
S: texsy.map
|
||||
$(TFMTODIT) $(SPECIALFLAG) -k 060 $(TFMDIR)/cmsy10.tfm texsy.map $@
|
||||
|
||||
|
||||
EX: texex.map
|
||||
$(TFMTODIT) $(SPECIALFLAG) $(TFMDIR)/cmex10.tfm texex.map $@
|
||||
|
||||
H: texr.map
|
||||
$(TFMTODIT) -g $(GFDIR)/cmss10.300gf $(TFMDIR)/cmss10.tfm texb.map $@
|
||||
|
||||
HB: texr.map
|
||||
$(TFMTODIT) -g $(GFDIR)/cmssbx10.300gf \
|
||||
$(TFMDIR)/cmssbx10.tfm texb.map $@
|
||||
|
||||
HI: texr.map
|
||||
$(TFMTODIT) -g $(GFDIR)/cmssi10.300gf \
|
||||
$(TFMDIR)/cmssi10.tfm texb.map $@
|
||||
|
||||
$(FONTS): $(TFMTODIT)
|
@ -1,38 +0,0 @@
|
||||
#Copyright (C) 1989, 1990, 1991 Free Software Foundation, Inc.
|
||||
# Written by James Clark (jjc@jclark.uucp)
|
||||
#
|
||||
#This file is part of groff.
|
||||
#
|
||||
#groff is free software; you can redistribute it and/or modify it under
|
||||
#the terms of the GNU General Public License as published by the Free
|
||||
#Software Foundation; either version 1, or (at your option) any later
|
||||
#version.
|
||||
#
|
||||
#groff is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
#WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
#FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
#for more details.
|
||||
#
|
||||
#You should have received a copy of the GNU General Public License along
|
||||
#with groff; see the file LICENSE. If not, write to the Free Software
|
||||
#Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
FONTS=R I B BI CW MI S EX H HI HB
|
||||
FONTDIR=/usr/local/lib/groff/font
|
||||
DEVICEDIR=$(FONTDIR)/devdvi
|
||||
|
||||
all:
|
||||
|
||||
install.nobin:
|
||||
-[ -d $(FONTDIR) ] || mkdir $(FONTDIR)
|
||||
-[ -d $(DEVICEDIR) ] || mkdir $(DEVICEDIR)
|
||||
cp $(FONTS) DESC eqnchar $(DEVICEDIR)
|
||||
|
||||
install.bin:
|
||||
|
||||
install: install.bin install.nobin
|
||||
|
||||
fonts: FORCE
|
||||
$(MAKE) -f FontMakefile
|
||||
|
||||
FORCE:
|
@ -1,35 +0,0 @@
|
||||
.EQ
|
||||
sdefine << %{ < back 20 < }%
|
||||
sdefine >> %{ > back 20 > }%
|
||||
|
||||
sdefine dot %accent "\fR\(a.\fP"%
|
||||
sdefine dotdot %accent "\fR\(ad\fP"%
|
||||
sdefine vec %accent {up 52 "\s[\En[.s]/2u]\(->\s0"}%
|
||||
sdefine dyad %accent {up 52 "\s[\En[.s]/2u]\(<>\s0"}%
|
||||
|
||||
sdefine int %{type "operator" vcenter \(is}%
|
||||
sdefine sum %{type "operator" vcenter \[sum]}%
|
||||
sdefine prod %{type "operator" vcenter \[product]}%
|
||||
sdefine coprod %{type "operator" vcenter \[coproduct]}%
|
||||
|
||||
sdefine cdot %type "binary" \(md%
|
||||
|
||||
set num1 68
|
||||
set num2 39
|
||||
set denom1 69
|
||||
set denom2 34
|
||||
set sup1 41
|
||||
set sup2 36
|
||||
set sup3 29
|
||||
set sup_drop 39
|
||||
set sub_drop 5
|
||||
set axis_height 25
|
||||
set x_height 43
|
||||
set default_rule_thickness 4
|
||||
set big_op_spacing1 11
|
||||
set big_op_spacing2 16
|
||||
set big_op_spacing3 20
|
||||
set big_op_spacing4 60
|
||||
set big_op_spacing5 10
|
||||
|
||||
.EN
|
@ -1,125 +0,0 @@
|
||||
0 *G
|
||||
1 *D
|
||||
2 *H
|
||||
3 *L
|
||||
4 *C
|
||||
5 *P
|
||||
6 *S
|
||||
7 *U
|
||||
8 *F
|
||||
9 *Q
|
||||
10 *W
|
||||
11 ff
|
||||
12 fi
|
||||
13 fl
|
||||
14 Fi
|
||||
15 Fl
|
||||
16 .i
|
||||
17 .j
|
||||
18 ga
|
||||
19 aa char180
|
||||
20 ah
|
||||
21 ab
|
||||
22 a- char175
|
||||
23 ao
|
||||
24 ac char184
|
||||
25 ss char223
|
||||
26 ae char230
|
||||
27 oe
|
||||
28 /o char248
|
||||
29 AE char198
|
||||
30 OE
|
||||
31 /O char216
|
||||
33 !
|
||||
35 # sh
|
||||
36 $ Do
|
||||
37 %
|
||||
38 &
|
||||
39 '
|
||||
40 (
|
||||
41 )
|
||||
42 *
|
||||
43 +
|
||||
44 ,
|
||||
45 - hy char173
|
||||
46 .
|
||||
47 / sl
|
||||
48 0
|
||||
49 1
|
||||
50 2
|
||||
51 3
|
||||
52 4
|
||||
53 5
|
||||
54 6
|
||||
55 7
|
||||
56 8
|
||||
57 9
|
||||
58 :
|
||||
59 ;
|
||||
60 r! char161
|
||||
61 =
|
||||
62 r? char191
|
||||
63 ?
|
||||
64 @ at
|
||||
65 A
|
||||
66 B
|
||||
67 C
|
||||
68 D
|
||||
69 E
|
||||
70 F
|
||||
71 G
|
||||
72 H
|
||||
73 I
|
||||
74 J
|
||||
75 K
|
||||
76 L
|
||||
77 M
|
||||
78 N
|
||||
79 O
|
||||
80 P
|
||||
81 Q
|
||||
82 R
|
||||
83 S
|
||||
84 T
|
||||
85 U
|
||||
86 V
|
||||
87 W
|
||||
88 X
|
||||
89 Y
|
||||
90 Z
|
||||
91 [ lB
|
||||
93 ] rB
|
||||
94 a^ ^ ha
|
||||
95 a.
|
||||
96 ` oq
|
||||
97 a
|
||||
98 b
|
||||
99 c
|
||||
100 d
|
||||
101 e
|
||||
102 f
|
||||
103 g
|
||||
104 h
|
||||
105 i
|
||||
106 j
|
||||
107 k
|
||||
108 l
|
||||
109 m
|
||||
110 n
|
||||
111 o
|
||||
112 p
|
||||
113 q
|
||||
114 r
|
||||
115 s
|
||||
116 t
|
||||
117 u
|
||||
118 v
|
||||
119 w
|
||||
120 x
|
||||
121 y
|
||||
122 z
|
||||
123 en
|
||||
124 em
|
||||
125 a"
|
||||
126 a~ ~
|
||||
127 ad char168
|
Loading…
Reference in New Issue
Block a user