--- ray/SConstruct 2009/10/22 21:16:05 1.9 +++ ray/SConstruct 2016/03/05 13:24:58 1.13 @@ -48,9 +48,10 @@ env.Decider('timestamp-match') if os.name == 'posix': from build_utils import install - csh_b = Builder(action = install.install_cshscript, - suffix = '', src_suffix = '.csh') - env.Append(BUILDERS={'InstallCsh': csh_b}) + script_b = Builder(action = install.install_script, suffix = '') + env.Append(BUILDERS={'InstallScript': script_b}) + tclscript_b = Builder(action = install.install_tclscript, suffix = '') + env.Append(BUILDERS={'InstallTCLScript': tclscript_b}) # configure platform-specific stuff from build_utils import load_plat @@ -69,7 +70,6 @@ if ((not env['SKIP'] # fill in generic config allplats_setup(env) - # Bring in all the actual things to build Export('env') if 'test' in sys.argv: @@ -96,3 +96,4 @@ env.Alias('build', ['#bin']) env.Alias('test', ['#test']) env.Alias('install', ['bininstall', 'rlibinstall', 'maninstall']) +# vim: set syntax=python: