# 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) TEXGYRE_OTFS = $(addprefix $(TEXGYRE_DIR)/,$(TEXGYRE_FILES)) URWOTF_OTFS = $(addprefix $(URWOTF_DIR)/,$(URWOTF_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) \ $(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) \ $(TEXGYRE_OTFS) \ $(URWOTF_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)/$('$(shell cd $(outdir); pwd)'' > $@