48 |
|
|
49 |
|
if os.name == 'posix': |
50 |
|
from build_utils import install |
51 |
< |
csh_b = Builder(action = install.install_script, |
52 |
< |
suffix = '', src_suffix = '.csh') |
53 |
< |
env.Append(BUILDERS={'InstallScript': csh_b}) |
51 |
> |
script_b = Builder(action = install.install_script, suffix = '') |
52 |
> |
env.Append(BUILDERS={'InstallScript': script_b}) |
53 |
> |
tclscript_b = Builder(action = install.install_tclscript, suffix = '') |
54 |
> |
env.Append(BUILDERS={'InstallTCLScript': tclscript_b}) |
55 |
|
|
56 |
|
# configure platform-specific stuff |
57 |
|
from build_utils import load_plat |
96 |
|
env.Alias('test', ['#test']) |
97 |
|
env.Alias('install', ['bininstall', 'rlibinstall', 'maninstall']) |
98 |
|
|
99 |
+ |
# vim: set syntax=python: |