| 1 | + | from __future__ import division, print_function, unicode_literals | 
| 2 | + |  | 
| 3 |  | import os | 
| 4 |  |  | 
| 5 |  | Import('env') | 
| 53 |  | MGF = Split('''mgf_parser.c mgf_object.c mgf_xf.c mgf_context.c''') | 
| 54 |  | libmgf = env.StaticLibrary(target=radlib('mgf'), source=MGF) | 
| 55 |  |  | 
| 56 | < | REETZ = Split('g3affine.c g3flist.c g3sphere.c g3vector.c gbasic.c maxheap.c') | 
| 56 | > | REETZ = Split('g3affine.c g3flist.c g3sphere.c g3vector.c gbasic.c maxheap.c muc_randvar.c') | 
| 57 |  | libreetz = env.StaticLibrary(target=radlib('reetz'), source=REETZ) | 
| 58 |  |  | 
| 59 |  | LIBFILES = Split('tmesh.cal') | 
| 66 |  | CPPPATH=oglincl) | 
| 67 |  | Default(librgl) | 
| 68 |  |  | 
| 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))) | 
| 72 | – |  | 
| 69 |  | # vim: set syntax=python: | 
| 70 | + | # vi: set ts=4 sw=4 : | 
| 71 | + |  |