diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2004-07-10 11:19:40 +0000 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2004-07-10 11:19:40 +0000 |
commit | 4d45518a9e5e39d06ba02ecee67ce19e19528463 (patch) | |
tree | 883b672fa4fccf92488da3f0efafffa0965c9dc7 /SConstruct | |
parent | 88d1ce594f340ecc724e068419d3f4fd64f3679a (diff) |
* mf/SConscript: Remove Builders.
* buildscripts/builder.py: Add LilyPond, Abc2ly and MF builders.
* input/SConscript:
* Documentation/user/SConscript: New file.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct index a29592389d..1a3e000eaf 100644 --- a/SConstruct +++ b/SConstruct @@ -333,16 +333,22 @@ env['PYTHON'] = 'python' env['LILYPOND_BIN'] = os.path.join (absbuild, 'lily', out, 'lilypond-bin') env['LILYPONDPREFIX'] = os.path.join (outdir, 'usr/share/lilypond') env['LILYPOND_BOOK'] = srcdir + '/scripts/lilypond-book.py' +env['ABC2LY_PY'] = srcdir + '/scripts/abc2ly.py' +env['MF_TO_TABLE_PY'] = srcdir + '/buildscripts/mf-to-table.py' +env['LILYPOND_PY'] = srcdir + '/scripts/lilypond.py' env['LILYPOND_BOOK_FLAGS'] = '' env['LILYPOND_BOOK_FORMAT'] = 'texi-html' +# ugh? env['LILYPOND_BOOK_PATH'] = ['.', '#/input', '#/input/regression', '#/input/test', '#/input/tutorial', os.path.join (absbuild, 'mf', out), '#/Documentation/user', - os.path.join (absbuild, 'Documentation', out)] + os.path.join (absbuild, 'Documentation', out), + os.path.join (absbuild, 'Documentation/user', out), + ] env['MAKEINFO_PATH'] = ['.', '#/Documentation/user', - os.path.join (absbuild, 'Documentation', out)] + os.path.join (absbuild, 'Documentation/user', out)] ## TEXINFO_PAPERSIZE_OPTION= $(if $(findstring $(PAPERSIZE),a4),,-t @afourpaper) env['TEXINFO_PAPERSIZE_OPTION'] = '-t @afourpaper' @@ -352,7 +358,8 @@ SConscript ('buildscripts/builder.py') #subdirs = ['mf',] #subdirs = ['flower', 'lily', 'parser', 'gui', 'main',] #subdirs = ['flower', 'lily', 'mf', 'scm', 'ly'] -subdirs = ['flower', 'lily', 'mf', 'scm', 'ly', 'Documentation'] +subdirs = ['flower', 'lily', 'mf', 'scm', 'ly', 'Documentation', + 'Documentation/user', 'input'] for d in subdirs: b = os.path.join (build, d, out) # Support clean sourctree build (srcdir build) |