diff options
-rw-r--r-- | SConstruct | 7 | ||||
-rw-r--r-- | lily/SConscript | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 4a715c730b..89d6a59da4 100644 --- a/SConstruct +++ b/SConstruct @@ -4,8 +4,13 @@ Experimental scons (www.scons.org) building: Usage: - scons + scons lily # build lily LILYPONDPREFIX=out-scons/usr/share/lilypond lily/out-scons/lilypond-bin + scons doc # build web doc + + scons # without args builds all targets below ./ + # maybe catch this one and only build lily? + scons / # builds all possible targets scons install scons -c # clean diff --git a/lily/SConscript b/lily/SConscript index 910a260688..2a0a83a38e 100644 --- a/lily/SConscript +++ b/lily/SConscript @@ -40,6 +40,8 @@ lily = e.Program (name, sources) env.Install (env['bindir'], lily) env.Alias ('install', env['bindir']) +env.Alias ('lily', lily) + #testing all_sources = ['SConscript',] + sources + includes |