]> git.donarmstrong.com Git - lilypond.git/blob - mf/GNUmakefile
* mf/GNUmakefile (SAUTER_FONTS): Added cmss14,
[lilypond.git] / mf / GNUmakefile
1 depth = ..
2
3 STEPMAKE_TEMPLATES=metafont install install-out
4 LOCALSTEPMAKE_TEMPLATES=asciifont
5
6 include $(depth)/make/stepmake.make 
7
8 AF_FILES = $(wildcard *.af) 
9
10 EXTRA_DIST_FILES += README feta.tex
11
12 # We don't use $(MF_FILES), because there's more .mf cruft here
13 FETA_MF_FILES = $(wildcard feta[0-9]*.mf)\
14         $(wildcard feta-braces*[0-9].mf)\
15         $(wildcard feta-din*[0-9].mf)\
16         $(wildcard feta-nummer*[0-9].mf)\
17         $(wildcard parmesan[0-9]*.mf)
18
19 FETA_FONTS = $(FETA_MF_FILES:.mf=)
20
21 XPM_FONTS = feta20 feta-din10 feta-nummer10 feta-braces20 parmesan20
22
23 LOG_FILES = $(FETA_MF_FILES:%.mf=$(outdir)/%.log)
24 TEXTABLES = $(FETA_MF_FILES:%.mf=$(outdir)/%.tex)
25 AFM_FILES = $(FETA_MF_FILES:%.mf=$(outdir)/%.afm) \
26         $(AF_FILES:%.af=$(outdir)/%.afm)
27 ENC_FILES = $(TEXTABLES:.tex=.enc)
28 TFM_FILES = $(FETA_MF_FILES:%.mf=$(outdir)/%.tfm)
29
30
31 ENCODING_FILE=$(findstring $(<:.mf=.enc), $(FETA_MF_FILES:.mf=.enc))
32 MFTRACE_FLAGS=$(if $(ENCODING_FILE),--encoding $(ENCODING_FILE),)
33
34 # Make tfm files first, log files last, 
35 # so that normally log files aren't made twice
36 ALL_GEN_FILES= $(TFM_FILES) $(TEXTABLES) $(AFM_FILES) $(TFM_FILES) $(LOG_FILES) $(ENC_FILES)
37
38 #PRE_INSTALL=$(MAKE) "$(ALL_GEN_FILES)"
39 INSTALLATION_DIR=$(local_lilypond_datadir)/fonts/source
40 INSTALLATION_FILES=$(MF_FILES) $(AF_FILES)
41
42 INSTALLATION_OUT_SUFFIXES=1 2 3 4 5
43
44 INSTALLATION_OUT_DIR1=$(local_lilypond_datadir)/tex
45 INSTALLATION_OUT_FILES1=$(TEXTABLES)
46
47 INSTALLATION_OUT_DIR2=$(local_lilypond_datadir)/fonts/afm
48 INSTALLATION_OUT_FILES2=$(AFM_FILES)
49
50 INSTALLATION_OUT_DIR3=$(local_lilypond_datadir)/fonts/tfm
51 INSTALLATION_OUT_FILES3=$(TFM_FILES)
52
53
54 SAUTER_FONTS =  cmbxti5 cmbxti6 cmbxti7 cmbxti8 cmbxti12 \
55         cmcsc7 cmcsc8 cmcsc12 cmtt5 cmtt6 cmtt7 cmtt17 \
56         cmbx14 cmbx17 cmti5 cmti6 cmss5 cmss6 cmss7 cmss14
57
58 ALL_FONTS = $(FETA_FONTS) $(SAUTER_FONTS)
59
60
61 PFA_FILES = $(ALL_FONTS:%=$(outdir)/%.pfa)
62 PFB_FILES = $(PFA_FILES:%.pfa=%.pfb)
63
64 ALL_GEN_FILES += $(PFA_FILES) $(outdir)/lilypond.map $(outdir)/fonts.scale
65 INSTALLATION_OUT_DIR4=$(local_lilypond_datadir)/fonts/type1
66 INSTALLATION_OUT_FILES4=$(PFA_FILES) $(outdir)/fonts.scale
67
68 INSTALLATION_OUT_DIR5=$(local_lilypond_datadir)/dvips/
69 INSTALLATION_OUT_FILES5=$(outdir)/lilypond.map
70
71 export MFINPUTS:=.:$(MFINPUTS)
72
73 default: pfa_warning $(ALL_GEN_FILES)
74
75
76 pfa_warning:
77 ifneq ($(basename $(MFTRACE)),mftrace)
78         @echo ""
79         @echo "ERROR: mftrace not found"
80         @echo ""
81         @echo "For obtaining PFA fonts, either install mftrace "
82         @echo "(see http://www.xs4all.nl/~hanwen/mftrace/ ),"
83         @echo "or try one of the following commands in this directory: "
84         @echo ""
85         @echo " make get-pfa "
86         @echo " make get-rpm-pfa "
87         @echo " make get-deb-pfa "
88         @echo ""
89         @echo "These commands will try to download the files from the internet."
90         @false
91 endif
92
93
94 debian-mirror=http://ftp.us.debian.org
95 debian-package =lilypond_$(TOPLEVEL_VERSION)-1_i386.deb
96 $(outdir)/$(debian-package):
97         wget --passive-ftp -P $(outdir) $(debian-mirror)/debian/pool/main/l/lilypond/$(debian-package)
98
99 get-deb-pfa: $(outdir)/$(debian-package)
100         rm -rf $(outdir)/./usr
101         ar p $< data.tar.gz | \
102                 tar -C $(outdir) -zvxf - '*.pfa'
103         touch $(addprefix $(outdir)/, $(addsuffix .bla,$(SAUTER_FONTS)))
104         cp `find $(outdir)/usr/ -name '*.pfa'` $(outdir)/
105
106
107 redhat-package=lilypond-$(TOPLEVEL_VERSION)-1.i386.rpm
108 $(outdir)/$(redhat-package):
109         wget  --passive-ftp -P $(outdir) ftp://ftp.lilypond.org/pub/LilyPond/binaries/RedHat-9/$(redhat-package)
110
111 get-rpm-pfa: $(outdir)/$(redhat-package)
112         cd $(outdir) ; rm -rf usr/ # (root alert!) 
113         cd $(outdir) ; rpm2cpio $(redhat-package) | cpio -uid '*.pfa'
114         touch $(addprefix $(outdir)/, $(addsuffix .bla,$(SAUTER_FONTS)))
115         cp `find $(outdir)/usr/ -name '*.pfa'` $(outdir)/
116
117 # change this dependency 
118 get-pfa: get-rpm-pfa
119
120
121 ##
122 ## todo: this also depends on .tfm, FIXME.
123 $(outdir)/%.afm  $(outdir)/%.enc  $(outdir)/%.tex $(outdir)/%list.ly $(outdir)/%.dep: $(outdir)/%.log $(outdir)/%.tfm
124         $(PYTHON) $(buildscript-dir)/mf-to-table.py --package=$(topdir) --outdir=$(outdir) --dep $(outdir)/$(<F:.log=.dep)  --afm $(outdir)/$(<F:.log=.afm)  --enc $(outdir)/$(<F:.log=.enc) --tex $(outdir)/$(<F:.log=.tex) --ly $(outdir)/$(<F:.log=list.ly) $<
125
126 fontdir: $(addprefix $(outdir)/, lilypond.map lilypond.sfd private-fonts fonts.scale fonts.dir)
127
128 ## Urg
129 mapentry=$(1) $(shell fgrep FontName $(outdir)/$(1).afm | sed -e 's/FontName *//') <$(1).pfaX
130
131 map = $(foreach a,$(2),$(call $(1),$(a)))
132 $(outdir)/lilypond.xmap: $(AFM_FILES)
133         echo '$(call map,mapentry,$(ALL_FONTS))' | \
134                 tr 'X' '\n' | sed -e 's/^ *//'> $@
135
136 # using shell for loop seems most robust
137 $(outdir)/lilypond.map: $(AFM_FILES)
138         for i in $(FETA_FONTS); do echo $$i $$(fgrep FontName $(outdir)/$$i.afm | sed -e 's/FontName *//') '<'$$i.pfa; done > $@
139         for i in $(SAUTER_FONTS); do echo "$$i $$i <$$i.pfa"; done >> $@
140
141
142 $(outdir)/fonts.scale: $(PFA_FILES)
143 #       cd $(outdir) && echo $(FETA_MF_FILES:.mf=.pfa) $(FETA_MF_FILES:.mf=.pfb) | $(PYTHON) $(topdir)/buildscripts/make-font-dir.py  > $(@F)
144         cd $(outdir) && echo *.pfa *.pfb | $(PYTHON) $(topdir)/buildscripts/make-font-dir.py  > $(@F)
145
146 $(outdir)/fonts.dir: $(outdir)/fonts.scale
147         cd $(outdir) && mkfontdir
148
149 # Sketch map file
150 $(outdir)/lilypond.sfd:
151 #       cd $(outdir) && echo sketch $(FETA_MF_FILES:.mf=.pfa) | $(PYTHON) $(topdir)/buildscripts/make-font-dir.py  > $(@F)
152         cd $(outdir) && echo sketch *.pfa | $(PYTHON) $(topdir)/buildscripts/make-font-dir.py  > $(@F)
153
154 # Sodipodi map file
155 SODIPODI_FONTS = parmesan20 feta-braces0 feta-nummer10 feta20
156 $(outdir)/private-fonts:
157         cd $(outdir) && echo sodipodi $(SODIPODI_FONTS:%=%.pfa) | $(PYTHON) $(topdir)/buildscripts/make-font-dir.py  > $(@F)
158
159 local-clean:
160         rm -f mfplain.mem mfplain.log 
161         rm -f *.tfm *.log
162
163 afm: $(AFM_FILES)
164 pfa: afm $(PFA_FILES) fontdir
165 pfb: afm $(PFB_FILES) fontdir
166
167
168 # stupid trick to have separate rules for each PFA font ;
169 # otherwise building PFAs is all-or-nothing.
170 $(SAUTER_FONTS:%=$(outdir)/%.bla):
171         $(foreach i, $@, touch $i && ) true
172
173 $(outdir)/%.pfa: $(outdir)/%.bla
174         $(MFTRACE) -I $(outdir)/ --pfa --simplify --keep-trying $(notdir $(basename $@))  && mv $(notdir $@) $(outdir)/
175