| 1 |
+ |
from __future__ import division, print_function, unicode_literals |
| 2 |
+ |
|
| 3 |
|
import os |
| 4 |
|
|
| 5 |
|
Import('env') # inherit from parent |
| 48 |
|
progs.append(prog) |
| 49 |
|
|
| 50 |
|
if os.name == 'posix': |
| 51 |
< |
Default(env.InstallScript(os.path.join('$RAD_BUILDBIN', 'glaze'), 'glaze.csh')) |
| 51 |
> |
Default(env.InstallScript(os.path.join('$RAD_BUILDBIN', 'glaze.csh'), |
| 52 |
> |
'glaze.csh')) |
| 53 |
> |
Default(env.InstallScript(os.path.join('$RAD_BUILDBIN', 'glaze'), |
| 54 |
> |
'glaze.py')) |
| 55 |
> |
else: |
| 56 |
> |
Default(env.InstallScript(os.path.join('$RAD_BUILDBIN', 'glaze.py'), |
| 57 |
> |
'glaze.py')) |
| 58 |
|
|
| 59 |
|
Default('#src/gen') |
| 60 |
|
env.Install('$RAD_BINDIR', progs) |
| 65 |
|
env.Append(RAD_RLIBINSTALL=env.Install('$RAD_RLIBDIR', LIBFILES)) |
| 66 |
|
|
| 67 |
|
# vim: set syntax=python: |
| 68 |
+ |
# vi: set ts=4 sw=4 : |