From: janneke Date: Thu, 8 Jul 2004 00:56:51 +0000 (+0000) Subject: Update multiple target rules. X-Git-Tag: release/2.3.9^2~13 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f6a11098f3d54edca13edc8980d4dcdf7007c30e;p=lilypond.git Update multiple target rules. --- diff --git a/mf/SConscript b/mf/SConscript index 166deb9062..2e010a4efc 100644 --- a/mf/SConscript +++ b/mf/SConscript @@ -90,7 +90,7 @@ def encoding_opt (target): return '' # UGH, should fix --output option for mftrace -pfa = Builder (action = ('MFINPUTS=.:' + str (Dir ('#/mf')) \ +xpfa = Builder (action = ('MFINPUTS=.:' + str (Dir ('#/mf')) \ + ' mftrace -I %(outdir)s --pfa' \ + ' --simplify --keep-trying' \ + ' $$(basename $SOURCE .mf) ' \ @@ -112,7 +112,7 @@ def run_mftrace (target, source, env): % vars () return os.system (command) -xpfa = Builder (action = run_mftrace, +pfa = Builder (action = run_mftrace, suffix = '.pfa', src_suffix = '.mf', emitter = add_enc_src) @@ -124,14 +124,15 @@ e = env.Copy (BUILDERS = {'Tfm' : tfm, MFINPUTS = '#/mf') #mf_sources = ('feta16.mf',) +#mf_sources = ('feta-braces-a.mf',) sources = map (lambda x: os.path.splitext (x)[0], mf_sources) t = map (e.Tfm, sources) a = map (e.Afm, sources) p = map (e.Pfa, sources) -#map (lambda x: e.Depends (x + '.pfa', x + '.enc'), sources) -map (lambda x: e.Depends (x + '.pfa', x + '.log'), sources) +map (lambda x: e.Depends (x + '.pfa', x + '.enc'), sources) +#map (lambda x: e.Depends (x + '.pfa', x + '.log'), sources) tfmdir = os.path.join (env['lilypondprefix'], 'fonts/tfm') afmdir = os.path.join (env['lilypondprefix'], 'afm')