X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2FSConscript;h=ebd623fee9a203647ec2667a83a23505e39675a1;hb=d806ead3005e3d85e8fce5ba8227600341a50b12;hp=eac3eb94bfacac56c2019373a6b25c53702f0ada;hpb=6b13be765d6b1181ed76eed6c987e3db37c03f5d;p=lilypond.git diff --git a/lily/SConscript b/lily/SConscript index eac3eb94bf..ebd623fee9 100644 --- a/lily/SConscript +++ b/lily/SConscript @@ -1,38 +1,29 @@ # -*-python-*- -Import ('env') +Import ('env', 'src_glob', 'install') outdir = Dir ('.').abspath -cc_sources = env['src_glob'] (env, '*.cc') + +cc_sources = src_glob ('*.cc') sources = cc_sources + ['parser.yy', 'lexer.ll'] -includes = env['src_glob'] (env, 'include/*.hh') +includes = src_glob ('include/*.hh') e = env.Copy () -e.Append (CPPPATH = [outdir, '#/lily/include', '#/flower/include']) -e.Append (LEXFLAGS = ['-Cfe', '-p', '-p']) -# SCons builds parser.cc and parser.hh automagically with this but -# keeps removing and rebuilding parser.cc because it wants parser.hpp. -# e.Append (YACCFLAGS = '-d') -# e.Depends ('lexer.cc', 'parser.cc') -# e.Depends ('my-lily-lexer.o', 'parser.cc') -# e.Depends ('my-lily-parser.o', 'parser.cc') +e.Append ( + CPPPATH = [ + '#/lily/include', + '#/flower/include', + outdir], + LEXFLAGS = ['-Cfe', '-p', '-p'], + LIBS = ['flower'], + ) -# Adding an explicit Builder works well, we do not even need to list -# header dependencies. -HH = Builder (action = 'bison -d -o ${TARGET.base}.cc $SOURCE', - suffix = '.hh', src_suffix = '.yy') -e.Append (BUILDERS = {'HH' : HH}) e.HH ('parser.hh', 'parser.yy') - -e.Append (LIBS = ['flower']) e.ParseConfig ('guile-config link') +lily = e.Program ('lilypond', sources) +install (lily, env['bindir']) -name = 'lilypond-bin' -lily = e.Program (name, sources) -dir = env['DESTDIR'] + env['bindir'] -env.Install (dir, lily) -env.Alias ('install', dir) - -po = env.Command ('lilypond.po', cc_sources + includes, env['pocommand']) -env.Alias ('po-update', po) +# let's not, for now +#po = env.Command ('lilypond.po', cc_sources + includes, env['pocommand']) +#env.Alias ('po-update', po)