| 51 |
|
MGF = Split('''mgf_parser.c mgf_object.c mgf_xf.c mgf_context.c''') |
| 52 |
|
libmgf = env.StaticLibrary(target=radlib('mgf'), source=MGF) |
| 53 |
|
|
| 54 |
< |
REETZ = Split('g3affine.c g3flist.c g3sphere.c g3vector.c gbasic.c maxheap.c') |
| 54 |
> |
REETZ = Split('g3affine.c g3flist.c g3sphere.c g3vector.c gbasic.c maxheap.c muc_randvar.c') |
| 55 |
|
libreetz = env.StaticLibrary(target=radlib('reetz'), source=REETZ) |
| 56 |
|
|
| 57 |
|
LIBFILES = Split('tmesh.cal') |
| 63 |
|
librgl = env.StaticLibrary(target=radlib('rgl'), source=RGL, |
| 64 |
|
CPPPATH=oglincl) |
| 65 |
|
Default(librgl) |
| 66 |
– |
|
| 67 |
– |
# Python support modules for test suite and other scripts |
| 68 |
– |
for fn in Split('''__init__.py lcompare.py pyrad_proc.py'''): |
| 69 |
– |
Default(env.InstallScript( |
| 70 |
– |
os.path.join('$RAD_BUILDRLIB','pyradlib',fn), |
| 71 |
– |
os.path.join('pyradlib', fn))) |
| 66 |
|
|
| 67 |
|
# vim: set syntax=python: |