| 19 |
|
PROGS = ( |
| 20 |
|
('rholo', Split('''rholo.c rholo2.c rholo2l.c rholo3.c rholo4.c''') |
| 21 |
|
+ [env.version, holofile, holo, viewbeams], |
| 22 |
< |
['rtpic','rtproc','rtpath','rtio','rtargs','rtmath','rtmem','rterror']), |
| 22 |
> |
['rtpic','rtproc','rtpath','rtio','rtargs','rtmath','rtmem','rterror'],0), |
| 23 |
|
('rhpict', Split('rhpict.c rhpict2.c')+[env.version, holofile, holo, viewbeams], |
| 24 |
< |
['rtpic','rtproc','rtargs','rtio','rtmath','rtmem','rterror']), |
| 24 |
> |
['rtpic','rtproc','rtargs','rtio','rtmath','rtmem','rterror'],1), |
| 25 |
|
('rhcopy', Split('rhcopy.c') + [clumpbeams, holofile, holo], |
| 26 |
< |
['rtpic','rtproc','rtargs','rtio','rtmath','rtmem','rterror']), |
| 26 |
> |
['rtpic','rtproc','rtargs','rtio','rtmath','rtmem','rterror'],1), |
| 27 |
|
('rhinfo', Split('rhinfo.c') + [holofile, holo], |
| 28 |
< |
['rtio','rtproc', 'rtmath','rterror']), |
| 28 |
> |
['rtio','rtproc', 'rtmath','rterror'],1), |
| 29 |
|
('rhoptimize', Split('rhoptimize.c') + [clumpbeams, holofile, holo], |
| 30 |
< |
['rtio','rtproc', 'rtmath','rterror']), |
| 30 |
> |
['rtio','rtproc', 'rtmath','rterror'],1), |
| 31 |
|
('genrhgrid', Split('genrhgrid.c') + [holofile, holo], |
| 32 |
< |
['rtio','rtmath','rtproc','rterror']), |
| 32 |
> |
['rtio','rtmath','rtproc','rterror'],1), |
| 33 |
|
) |
| 34 |
< |
if os.name != 'nt': # pending some major work... |
| 34 |
> |
if 1: |
| 35 |
|
for p in PROGS: |
| 36 |
+ |
print(p[0]) |
| 37 |
+ |
if not p[3] and os.name == 'nt': continue |
| 38 |
|
prog = env.Program(target=radbin(p[0]), |
| 39 |
|
source=p[1], LIBS=p[2] + mlib) |
| 40 |
|
Default(prog) |