]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/SConscript
Updates.
[lilypond.git] / Documentation / SConscript
1 # -*-python-*-
2
3 import glob
4 import os
5
6 Import ('env')
7 here = os.getcwd ()
8 reldir = str (Dir ('.').srcnode ())
9 os.chdir (reldir)
10 sources = ['index.html.in', 'texinfo.css']
11 os.chdir (here)
12 outdir = os.path.join (env['build'], reldir, env['out'])
13
14 all_sources = ['SConscript',] + sources
15
16 # ballprefix = env['ballprefix'] + '/Documentation'
17 # ball = Builder (prefix = ballprefix + '/', action = 'ln $SOURCE $TARGET')
18 # et = env.Copy (BUILDERS = {'BALL': ball})
19 # ballize = map (et.BALL, all_sources)
20 # tar = env.Tar (env['tarball'],
21 #              map (lambda x: os.path.join (ballprefix, x), all_sources))
22
23 tar = env['baller'] ('Documentation', all_sources, env)
24 #env.Alias ('tar', tar)
25