]> git.donarmstrong.com Git - lilypond.git/blob - mf/GNUmakefile
Issue 4552 / 5: Remove makefiles to convert and install URW++ fonts
[lilypond.git] / mf / GNUmakefile
1 # mf/GNUmakefile
2
3 depth = ..
4
5 STEPMAKE_TEMPLATES = metafont \
6                      install \
7                      install-out
8 LOCALSTEPMAKE_TEMPLATES = lilypond
9
10 # These are the main .mf files.  We don't use $(MF_FILES) here,
11 # because there are more .mf files, input'ed into the main files.
12 FETA_MF_FILES = $(call src-wildcard,feta[0-9]*.mf) \
13                 $(call src-wildcard,feta-braces-[a-z].mf) \
14                 $(call src-wildcard,feta-alphabet*[0-9].mf) \
15                 $(call src-wildcard,feta-noteheads*[0-9].mf) \
16                 $(call src-wildcard,feta-flags*[0-9].mf) \
17                 $(call src-wildcard,parmesan[0-9]*.mf) \
18                 $(call src-wildcard,parmesan-noteheads*[0-9].mf)
19 FETA_FONTS = $(FETA_MF_FILES:.mf=)
20 ALL_FONTS = $(FETA_FONTS)
21 PFB_FILES = $(ALL_FONTS:%=$(outdir)/%.pfb)
22
23 include $(depth)/make/stepmake.make
24
25
26 EXTRA_DIST_FILES += README mf2pt1.mp
27
28 STAFF_SIZES = 11 13 14 16 18 20 23 26
29 BRACES = a b c d e f g h i
30
31 OTF_FILES = $(STAFF_SIZES:%=$(outdir)/emmentaler-%.otf) \
32             $(outdir)/emmentaler-brace.otf
33 OTF_TABLES = $(STAFF_SIZES:%=$(outdir)/feta%.otf-table) \
34              $(BRACES:%=$(outdir)/feta-braces-%.otf-table)
35 SVG_FILES = $(OTF_FILES:%.otf=%.svg)
36 WOFF_FILES = $(OTF_FILES:%.otf=%.woff)
37
38 TEXGYRE_OTFS = $(addprefix $(TEXGYRE_DIR)/,$(TEXGYRE_FILES))
39
40 LILYPOND_FONTS_CONF = $(outdir)/00-lilypond-fonts.conf \
41                       $(outdir)/99-lilypond-fonts.conf
42
43 LOG_FILES = $(FETA_MF_FILES:%.mf=$(outdir)/%.log)
44 LISP_FILES = $(FETA_MF_FILES:%.mf=$(outdir)/%.lisp)
45 ENC_FILES = $(FETA_MF_FILES:%.mf=$(outdir)/%.enc)
46 TFM_FILES = $(FETA_MF_FILES:%.mf=$(outdir)/%.tfm)
47
48 $(outdir)/emmentaler-brace.otf-gtable: $(BRACES:%=$(outdir)/feta-braces-%.otf-gtable)
49         echo '(design_size . 20)' > $@
50
51 $(outdir)/feta%.otf-table: $(outdir)/feta%.lisp $(outdir)/parmesan%.lisp \
52         $(outdir)/parmesan-noteheads%.lisp \
53         $(outdir)/feta-noteheads%.lisp \
54         $(outdir)/feta-flags%.lisp \
55         $(outdir)/feta-alphabet%.lisp
56         cat $^ > $@
57
58 $(outdir)/emmentaler-brace.otf-table: $(foreach x, a b c d e f g h i,$(outdir)/feta-braces-$(x).lisp)
59         cat $^ > $@
60
61 $(outdir)/emmentaler-brace.otf: $(outdir)/emmentaler-brace.subfonts \
62                                 $(outdir)/emmentaler-brace.fontname \
63                                 $(outdir)/emmentaler-brace.otf-table \
64                                 $(outdir)/emmentaler-brace.otf-gtable \
65                                 $(outdir)/emmentaler-brace.pe
66
67 $(outdir)/emmentaler-brace.fontname:
68         printf 'emmentaler-brace' > $@
69 $(outdir)/emmentaler-brace.subfonts:
70         echo $(subst .mf,,$(call src-wildcard,feta-braces-[a-z].mf)) > $@
71
72 $(outdir)/emmentaler-%.genpe: $(buildscript-dir)/gen-emmentaler-scripts
73         $< --dir=$(outdir) --design-size=$(patsubst emmentaler-%.genpe,%,$(notdir $@))
74
75 ALL_GEN_FILES = $(ENC_FILES) \
76                 $(OTF_FILES) \
77                 $(SVG_FILES) \
78                 $(WOFF_FILES) \
79                 $(LILYPOND_FONTS_CONF)
80
81 # PRE_INSTALL=$(MAKE) "$(ALL_GEN_FILES)"
82
83 INSTALLATION_DIR = $(local_lilypond_datadir)/fonts/source
84 INSTALLATION_FILES = $(MF_FILES)
85
86 INSTALLATION_OUT_SUFFIXES = 1 2 3
87
88 INSTALLATION_OUT_DIR1 = $(local_lilypond_datadir)/fonts/otf
89 INSTALLATION_OUT_FILES1 = $(OTF_FILES) \
90                           $(TEXGYRE_OTFS)
91
92 INSTALLATION_OUT_DIR2 = $(local_lilypond_datadir)/fonts/svg
93 INSTALLATION_OUT_FILES2 = $(SVG_FILES) $(WOFF_FILES)
94
95 INSTALLATION_OUT_DIR3 = $(local_lilypond_datadir)/fonts
96 INSTALLATION_OUT_FILES3 = $(LILYPOND_FONTS_CONF)
97
98 export MFINPUTS := .:$(MFINPUTS)
99
100 # A few rules here generate multiple files from one command line.  For
101 # treating this case, we only declare one output explicitly, and use a
102 # dummy rules for the other outputs. The dummy rule uses
103 # $(UPDATE_TARGET) so the order of writing in the real command does
104 # not confuse make.
105 UPDATE_TARGET = if test -f $@; then touch $@ ; fi
106
107 # only for fonts which
108 #
109 # 1. are mentioned in font.scm
110 #
111 # 2. are not included with teTeX
112 #
113 $(outdir)/%.lisp: $(outdir)/%.log $(outdir)/%.tfm
114         $(buildscript-dir)/mf-to-table \
115                 --global-lisp=$(outdir)/$(<F:.log=.otf-gtable) \
116                 --lisp=$(outdir)/$(<F:.log=.lisp) \
117                 --outdir=$(outdir) \
118                 --enc $(outdir)/$(<F:.log=.enc) \
119                 $<
120
121 $(outdir)/%.otf-gtable $(outdir)/%.enc: $(outdir)/%.lisp
122         $(UPDATE_TARGET)
123
124 ## Putting pfb here forces all .pfb fonts to be built before
125 # fontforge starts generating emmentaler-*.* fonts.
126 $(outdir)/emmentaler-%.otf: $(outdir)/emmentaler-%.genpe \
127                             $(outdir)/feta%.pfb \
128                             $(outdir)/feta-noteheads%.pfb \
129                             $(outdir)/feta-flags%.pfb \
130                             $(outdir)/feta-alphabet%.pfb \
131                             $(outdir)/parmesan%.pfb \
132                             $(outdir)/parmesan-noteheads%.pfb \
133                             $(outdir)/feta%.otf-table \
134                             $(outdir)/feta%.otf-gtable \
135                             | pfb
136         cd $(outdir) && $(FONTFORGE) -script $(notdir $<)
137
138 $(outdir)/emmentaler-%.svg $(outdir)/emmentaler-%.woff: $(outdir)/emmentaler-%.otf
139         $(UPDATE_TARGET)
140
141 $(outdir)/emmentaler-brace.otf: $(outdir)/emmentaler-brace.pe\
142                        $(foreach s,$(BRACES),$(outdir)/feta-braces-$(s).pfb) \
143                        $(outdir)/emmentaler-brace.otf-table $(outdir)/emmentaler-brace.otf-gtable \
144                        | pfb
145         cd $(outdir) && $(FONTFORGE) -script emmentaler-brace.pe
146
147 $(outdir)/emmentaler-brace.svg $(outdir)/emmentaler-brace.woff: $(outdir)/emmentaler-brace.otf
148         $(UPDATE_TARGET)
149
150 default: tree-regen \
151          $(outdir)/fonts.conf
152
153 .PHONY: tree-regen
154
155 tree-regen: $(ALL_GEN_FILES)
156         ${MAKE} -C $(top-build-dir) link-mf-tree
157
158
159 local-clean:
160         rm -f mfplain.mem mfplain.log
161         rm -f *.tfm *.log
162
163
164 $(outdir)/fonts.conf:
165         echo '<fontconfig><dir>'$(shell cd $(outdir); pwd)'</dir></fontconfig>' > $@