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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
|
# mf/GNUmakefile
depth = ..
STEPMAKE_TEMPLATES = metafont \
install \
install-out
LOCALSTEPMAKE_TEMPLATES = lilypond
# These are the main .mf files. We don't use $(MF_FILES) here,
# because there are more .mf files, input'ed into the main files.
FETA_MF_FILES = $(call src-wildcard,feta[0-9]*.mf) \
$(call src-wildcard,feta-braces-[a-z].mf) \
$(call src-wildcard,feta-alphabet*[0-9].mf) \
$(call src-wildcard,feta-noteheads*[0-9].mf) \
$(call src-wildcard,feta-flags*[0-9].mf) \
$(call src-wildcard,parmesan[0-9]*.mf) \
$(call src-wildcard,parmesan-noteheads*[0-9].mf)
FETA_FONTS = $(FETA_MF_FILES:.mf=)
ALL_FONTS = $(FETA_FONTS)
PFB_FILES = $(ALL_FONTS:%=$(outdir)/%.pfb)
include $(depth)/make/stepmake.make
EXTRA_DIST_FILES += README mf2pt1.mp
STAFF_SIZES = 11 13 14 16 18 20 23 26
BRACES = a b c d e f g h i
OTF_FILES = $(STAFF_SIZES:%=$(outdir)/emmentaler-%.otf) \
$(outdir)/emmentaler-brace.otf
OTF_TABLES = $(STAFF_SIZES:%=$(outdir)/feta%.otf-table) \
$(BRACES:%=$(outdir)/feta-braces-%.otf-table)
SVG_FILES = $(OTF_FILES:%.otf=%.svg)
WOFF_FILES = $(OTF_FILES:%.otf=%.woff)
NCSB_OTFS = $(addprefix $(outdir)/,CenturySchL-Ital.otf \
CenturySchL-BoldItal.otf \
CenturySchL-Roma.otf \
CenturySchL-Bold.otf)
HELV_OTFS = $(addprefix $(outdir)/,NimbusSanL-ReguItal.otf \
NimbusSanL-BoldItal.otf \
NimbusSanL-Regu.otf \
NimbusSanL-Bold.otf)
COUR_OTFS = $(addprefix $(outdir)/,NimbusMonL-ReguObli.otf \
NimbusMonL-BoldObli.otf \
NimbusMonL-Regu.otf \
NimbusMonL-Bold.otf)
TEXGYRE_OTFS = $(addprefix $(TEXGYRE_DIR)/,$(TEXGYRE_FILES))
LILYPOND_FONTS_CONF = $(outdir)/00-lilypond-fonts.conf \
$(outdir)/99-lilypond-fonts.conf
LOG_FILES = $(FETA_MF_FILES:%.mf=$(outdir)/%.log)
LISP_FILES = $(FETA_MF_FILES:%.mf=$(outdir)/%.lisp)
ENC_FILES = $(FETA_MF_FILES:%.mf=$(outdir)/%.enc)
TFM_FILES = $(FETA_MF_FILES:%.mf=$(outdir)/%.tfm)
$(outdir)/emmentaler-brace.otf-gtable: $(BRACES:%=$(outdir)/feta-braces-%.otf-gtable)
echo '(design_size . 20)' > $@
$(outdir)/feta%.otf-table: $(outdir)/feta%.lisp $(outdir)/parmesan%.lisp \
$(outdir)/parmesan-noteheads%.lisp \
$(outdir)/feta-noteheads%.lisp \
$(outdir)/feta-flags%.lisp \
$(outdir)/feta-alphabet%.lisp
cat $^ > $@
$(outdir)/emmentaler-brace.otf-table: $(foreach x, a b c d e f g h i,$(outdir)/feta-braces-$(x).lisp)
cat $^ > $@
$(outdir)/emmentaler-brace.otf: $(outdir)/emmentaler-brace.subfonts \
$(outdir)/emmentaler-brace.fontname \
$(outdir)/emmentaler-brace.otf-table \
$(outdir)/emmentaler-brace.otf-gtable \
$(outdir)/emmentaler-brace.pe
$(outdir)/emmentaler-brace.fontname:
printf 'emmentaler-brace' > $@
$(outdir)/emmentaler-brace.subfonts:
echo $(subst .mf,,$(call src-wildcard,feta-braces-[a-z].mf)) > $@
$(outdir)/emmentaler-%.genpe: $(buildscript-dir)/gen-emmentaler-scripts
$< --dir=$(outdir) --design-size=$(patsubst emmentaler-%.genpe,%,$(notdir $@))
ALL_GEN_FILES = $(ENC_FILES) \
$(NCSB_OTFS) \
$(HELV_OTFS) \
$(COUR_OTFS) \
$(OTF_FILES) \
$(SVG_FILES) \
$(WOFF_FILES) \
$(LILYPOND_FONTS_CONF)
# PRE_INSTALL=$(MAKE) "$(ALL_GEN_FILES)"
INSTALLATION_DIR = $(local_lilypond_datadir)/fonts/source
INSTALLATION_FILES = $(MF_FILES)
INSTALLATION_OUT_SUFFIXES = 1 2 3
INSTALLATION_OUT_DIR1 = $(local_lilypond_datadir)/fonts/otf
INSTALLATION_OUT_FILES1 = $(OTF_FILES) \
$(NCSB_OTFS) $(HELV_OTFS) $(COUR_OTFS) $(TEXGYRE_OTFS)
INSTALLATION_OUT_DIR2 = $(local_lilypond_datadir)/fonts/svg
INSTALLATION_OUT_FILES2 = $(SVG_FILES) $(WOFF_FILES)
INSTALLATION_OUT_DIR3 = $(local_lilypond_datadir)/fonts
INSTALLATION_OUT_FILES3 = $(LILYPOND_FONTS_CONF)
export MFINPUTS := .:$(MFINPUTS)
# A few rules here generate multiple files from one command line. For
# treating this case, we only declare one output explicitly, and use a
# dummy rules for the other outputs. The dummy rule uses
# $(UPDATE_TARGET) so the order of writing in the real command does
# not confuse make.
UPDATE_TARGET = if test -f $@; then touch $@ ; fi
# only for fonts which
#
# 1. are mentioned in font.scm
#
# 2. are not included with teTeX
#
$(outdir)/%.lisp: $(outdir)/%.log $(outdir)/%.tfm
$(buildscript-dir)/mf-to-table \
--global-lisp=$(outdir)/$(<F:.log=.otf-gtable) \
--lisp=$(outdir)/$(<F:.log=.lisp) \
--outdir=$(outdir) \
--enc $(outdir)/$(<F:.log=.enc) \
$<
$(outdir)/%.otf-gtable $(outdir)/%.enc: $(outdir)/%.lisp
$(UPDATE_TARGET)
## Putting pfb here forces all .pfb fonts to be built before
# fontforge starts generating emmentaler-*.* fonts.
$(outdir)/emmentaler-%.otf: $(outdir)/emmentaler-%.genpe \
$(outdir)/feta%.pfb \
$(outdir)/feta-noteheads%.pfb \
$(outdir)/feta-flags%.pfb \
$(outdir)/feta-alphabet%.pfb \
$(outdir)/parmesan%.pfb \
$(outdir)/parmesan-noteheads%.pfb \
$(outdir)/feta%.otf-table \
$(outdir)/feta%.otf-gtable \
| pfb
cd $(outdir) && $(FONTFORGE) -script $(notdir $<)
$(outdir)/emmentaler-%.svg $(outdir)/emmentaler-%.woff: $(outdir)/emmentaler-%.otf
$(UPDATE_TARGET)
$(outdir)/emmentaler-brace.otf: $(outdir)/emmentaler-brace.pe\
$(foreach s,$(BRACES),$(outdir)/feta-braces-$(s).pfb) \
$(outdir)/emmentaler-brace.otf-table $(outdir)/emmentaler-brace.otf-gtable \
| pfb
cd $(outdir) && $(FONTFORGE) -script emmentaler-brace.pe
$(outdir)/emmentaler-brace.svg $(outdir)/emmentaler-brace.woff: $(outdir)/emmentaler-brace.otf
$(UPDATE_TARGET)
default: tree-regen \
$(outdir)/fonts.conf
.PHONY: tree-regen
tree-regen: $(ALL_GEN_FILES)
${MAKE} -C $(top-build-dir) link-mf-tree
local-clean:
rm -f mfplain.mem mfplain.log
rm -f *.tfm *.log
$(outdir)/fonts.conf:
echo '<fontconfig><dir>'$(shell cd $(outdir); pwd)'</dir></fontconfig>' > $@
$(outdir)/CenturySchL-Roma.otf: $(NCSB_SOURCE_FILES) \
$(auxscript-dir)/pfx2ttf.fontforge
$(foreach i, $(basename $(NCSB_SOURCE_FILES)), \
$(FONTFORGE) -script $(auxscript-dir)/pfx2ttf.fontforge \
$(i).pfb $(i).afm $(outdir)/ && ) true
$(addprefix $(outdir)/,CenturySchL-Ital.otf \
CenturySchL-Bold.otf \
CenturySchL-BoldItal.otf): $(outdir)/CenturySchL-Roma.otf
$(UPDATE_TARGET)
$(outdir)/NimbusSanL-Regu.otf: $(HELV_SOURCE_FILES) \
$(auxscript-dir)/pfx2ttf.fontforge
$(foreach i, $(basename $(HELV_SOURCE_FILES)), \
$(FONTFORGE) -script $(auxscript-dir)/pfx2ttf.fontforge \
$(i).pfb $(i).afm $(outdir)/ && ) true
$(addprefix $(outdir)/,NimbusSanL-ReguItal.otf \
NimbusSanL-Bold.otf \
NimbusSanL-BoldItal.otf): $(outdir)/NimbusSanL-Regu.otf
$(UPDATE_TARGET)
$(outdir)/NimbusMonL-Regu.otf: $(COUR_SOURCE_FILES) \
$(auxscript-dir)/pfx2ttf-mono.fontforge
$(foreach i, $(basename $(COUR_SOURCE_FILES)), \
$(FONTFORGE) -script $(auxscript-dir)/pfx2ttf-mono.fontforge \
$(i).pfb $(i).afm $(outdir)/ && ) true
$(addprefix $(outdir)/,NimbusMonL-ReguObli.otf \
NimbusMonL-Bold.otf \
NimbusMonL-BoldObli.otf): $(outdir)/NimbusMonL-Regu.otf
$(UPDATE_TARGET)
|