diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2004-07-11 14:03:01 +0000 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2004-07-11 14:03:01 +0000 |
commit | 416d2cc66c9072ba7ad9158cc543cd58ece8de18 (patch) | |
tree | 50a2f65f3400ae223a4c64cf3c91dcfe1b6da8e6 | |
parent | 63a4c4c652ddce7338b9e0f47d0e0c7de4d7a705 (diff) |
* SConstruct:
* buildscripts/builder.py:
* Documentation/user/SConscript: SCons fixes.
-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 |