]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/SConscript
Updates. Add targets: tar, dist, release.
[lilypond.git] / flower / SConscript
index 56dd850762d9ca16afc9d625117128edba46eca2..ee172728062327b68d9a907735de2fabec75abd0 100644 (file)
@@ -8,7 +8,6 @@ here = os.getcwd ()
 reldir = str (Dir ('.').srcnode ())
 os.chdir (reldir)
 sources = glob.glob ('*.cc')
-includes = glob.glob ('include/*.hh')
 os.chdir (here)
 outdir = os.path.join (env['build'], reldir, env['out'])
 
@@ -19,13 +18,3 @@ if env['static']:
        e.Library (name, sources) 
 if not env['static'] or env['shared']:
        e.SharedLibrary (name, sources)
-
-all_sources = ['SConscript',] + sources + includes
-all_sources = ['SConscript', 'GNUmakefile']
-ballprefix = env['ballprefix'] + '/flower'
-ball = Builder (prefix = ballprefix + '/', action = 'ln $SOURCE $TARGET')
-et = env.Copy (BUILDERS = {'BALL': ball})
-#et = env.Copy ()
-ballize = map (et.BALL, all_sources)
-tar = env.Tar (env['tarball'],
-              map (lambda x: os.path.join (ballprefix, x), all_sources))