353 |
env.Alias('docs') |
env.Alias('docs') |
354 |
env.Alias('build_tests') # target to build all C++ tests |
env.Alias('build_tests') # target to build all C++ tests |
355 |
env.Alias('build_py_tests') # target to build all python tests |
env.Alias('build_py_tests') # target to build all python tests |
356 |
env.Alias('run_tests',['build_tests']) # target to run all C++ test |
env.Alias('build_all_tests', [ 'build_tests', 'build_py_tests' ] ) # target to build all python tests |
357 |
env.Alias('py_tests', ['build_py_tests']) # taget to run all released python tests |
env.Alias('run_tests', 'build_tests') # target to run all C++ test |
358 |
|
env.Alias('py_tests', 'build_py_tests') # taget to run all released python tests |
359 |
env.Alias('all_tests', ['run_tests', 'py_tests']) # target to run all C++ and released python tests |
env.Alias('all_tests', ['run_tests', 'py_tests']) # target to run all C++ and released python tests |
360 |
|
|
361 |
# Python install - esys __init__.py |
# Python install - esys __init__.py |
373 |
# adds this file and the scons option directore to the source tar |
# adds this file and the scons option directore to the source tar |
374 |
release_srcfiles=[env.File('SConstruct'),]+[ env.File(x) for x in glob.glob('scons/*.py') ] |
release_srcfiles=[env.File('SConstruct'),]+[ env.File(x) for x in glob.glob('scons/*.py') ] |
375 |
release_testfiles=[env.File('README_TESTS'),] |
release_testfiles=[env.File('README_TESTS'),] |
376 |
env.Zip(src_zipfile,release_srcfiles) |
env.Zip(src_zipfile, release_srcfiles) |
377 |
env.Zip(test_zipfile, release_testfiles) |
env.Zip(test_zipfile, release_testfiles) |
378 |
env.Tar(src_tarfile, release_srcfiles) |
env.Tar(src_tarfile, release_srcfiles) |
379 |
env.Tar(test_tarfile, release_testfiles) |
env.Tar(test_tarfile, release_testfiles) |