27 |
else: |
else: |
28 |
example_files+=[ env.File(f) ] |
example_files+=[ env.File(f) ] |
29 |
env.Zip(examples_zipfile, example_files) |
env.Zip(examples_zipfile, example_files) |
30 |
env.Tar(examples_tarfile, example_files) |
try: |
31 |
|
env.Tar(examples_tarfile, example_files) |
32 |
|
except AttributeError: |
33 |
|
pass |
34 |
# Call the doc build using SConscript |
# Call the doc build using SConscript |
35 |
local_env.SConscript(dirs = ['#/doc/user'], build_dir='#/build/$PLATFORM/doc/user', duplicate=1) |
local_env.SConscript(dirs = ['#/doc/user'], build_dir='#/build/$PLATFORM/doc/user', duplicate=1) |
36 |
|
|