| 1 | 
schorsch | 
1.1 | 
import os | 
| 2 | 
  | 
  | 
 | 
| 3 | 
  | 
  | 
Import('env') # inherit from parent | 
| 4 | 
  | 
  | 
 | 
| 5 | 
schorsch | 
1.7 | 
mlib = ['$RAD_MLIB'] | 
| 6 | 
  | 
  | 
progs = [] | 
| 7 | 
schorsch | 
1.1 | 
 | 
| 8 | 
  | 
  | 
# compose paths | 
| 9 | 
schorsch | 
1.7 | 
def radbin(name): return os.path.join('$RAD_BUILDBIN', name) | 
| 10 | 
  | 
  | 
#def radbin(name): return name | 
| 11 | 
  | 
  | 
def radlib(name): return os.path.join('$RAD_BUILDLIB', name) | 
| 12 | 
schorsch | 
1.2 | 
 | 
| 13 | 
  | 
  | 
warp3d = env.Object(source="warp3d.c") | 
| 14 | 
  | 
  | 
clrtab = env.Object(source="clrtab.c") | 
| 15 | 
  | 
  | 
neuclrtab = env.Object(source="neuclrtab.c") | 
| 16 | 
schorsch | 
1.1 | 
 | 
| 17 | 
  | 
  | 
# standard targets | 
| 18 | 
  | 
  | 
PROGS = ( | 
| 19 | 
schorsch | 
1.2 | 
# name          files            libs | 
| 20 | 
  | 
  | 
('macbethcal', Split('macbethcal.c pmapgen.c mx3.c')+[warp3d], | 
| 21 | 
  | 
  | 
        ['rtpic','rtproc','rtpath','rtio','rtargs','rtcont','rtmem','rterror']), | 
| 22 | 
  | 
  | 
('pcond',    Split('pcond.c pcond2.c pcond3.c pcond4.c')+[warp3d], | 
| 23 | 
  | 
  | 
        ['rtpic','rtproc','rtpath','rtio','rtargs','rtmath','rtcont','rtmem','rterror']), | 
| 24 | 
  | 
  | 
('pfilt',    Split('pfilt.c pf2.c pf3.c'), | 
| 25 | 
  | 
  | 
        ['rtlamps','rtpic','rtio','rtpath','rtargs','rtmath']), | 
| 26 | 
schorsch | 
1.10 | 
('pcwarp',   ['pcwarp.c', warp3d],        | 
| 27 | 
  | 
  | 
        ['rtpic','rtio','rtcont','rtmem','rterror']), | 
| 28 | 
schorsch | 
1.2 | 
('pvalue',   ['pvalue.c'],    ['rtpic','rtio','rtargs','rtmath']), | 
| 29 | 
  | 
  | 
('pcompos',  ['pcompos.c'],   ['rtpic','rtproc','rtpath','rtio','rterror']), | 
| 30 | 
  | 
  | 
('psign',    ['psign.c'], | 
| 31 | 
  | 
  | 
        ['rtpic','rtscene','rtio','rtpath','rtargs','rtcont','rtmem','rterror']), | 
| 32 | 
  | 
  | 
('protate',  ['protate.c'],   ['rtpic','rtio']), | 
| 33 | 
  | 
  | 
('pextrem',  ['pextrem.c'],   ['rtpic','rtio']), | 
| 34 | 
  | 
  | 
('pflip',    ['pflip.c'],     ['rtpic','rtio']), | 
| 35 | 
  | 
  | 
('pcomb',    ['pcomb.c'], | 
| 36 | 
  | 
  | 
        ['rtpic','rtproc','rtpath','rtio','rtfunc','rtargs','rtmath','rtcont','rtmem']), | 
| 37 | 
  | 
  | 
('pinterp',  ['pinterp.c'], | 
| 38 | 
  | 
  | 
        ['rtproc','rtpic','rtio','rtpath','rtargs','rtmath','rtmem','rterror']), | 
| 39 | 
  | 
  | 
 | 
| 40 | 
  | 
  | 
('ra_gif',   ['ra_gif.c', clrtab, neuclrtab], ['rtpic','rtio','rtmem']), | 
| 41 | 
  | 
  | 
('ra_ps',    ['ra_ps.c'],     ['rtpic','rtio','rtargs','rtmem']), | 
| 42 | 
  | 
  | 
('ra_ppm',   ['ra_ppm.c'],    ['rtpic','rtio','rtmem']), | 
| 43 | 
schorsch | 
1.8 | 
('ra_bmp',   ['ra_bmp.c'],    ['rtpic','rtproc','rtio','rtmem']), | 
| 44 | 
schorsch | 
1.2 | 
('ra_t8',    ['ra_t8.c', clrtab, neuclrtab], ['rtpic','rtio','rtmem']), | 
| 45 | 
  | 
  | 
('ra_t16',   ['ra_t16.c'],    ['rtpic','rtio','rtmem']), | 
| 46 | 
  | 
  | 
('ra_rgbe', ['ra_rgbe.c'],['rtpic','rtproc','rtpath','rtio','rtmem','rterror']), | 
| 47 | 
  | 
  | 
('ra_pict',  ['ra_pict.c'],   ['rtpic','rtio','rtmem']), | 
| 48 | 
  | 
  | 
('ra_hexbit',['ra_hexbit.c'], ['rtpic','rtio','rtmem']), | 
| 49 | 
  | 
  | 
('ra_xyze',  ['ra_xyze.c'],   ['rtpic','rtio','rtmem']), | 
| 50 | 
schorsch | 
1.1 | 
 | 
| 51 | 
schorsch | 
1.2 | 
('ttyimage', ['ttyimage.c'],  ['rtpic','rtio','rtmem']), | 
| 52 | 
schorsch | 
1.1 | 
) | 
| 53 | 
  | 
  | 
for p in PROGS: | 
| 54 | 
schorsch | 
1.2 | 
    prog = env.Program(target=radbin(p[0]), source=p[1], | 
| 55 | 
schorsch | 
1.7 | 
        LIBS=p[2]+mlib) | 
| 56 | 
  | 
  | 
    progs.append(prog) | 
| 57 | 
schorsch | 
1.1 | 
 | 
| 58 | 
  | 
  | 
 | 
| 59 | 
  | 
  | 
# tiff library (unix-specific for the moment) | 
| 60 | 
  | 
  | 
if os.name == 'posix': | 
| 61 | 
  | 
  | 
        cwd = os.getcwd() | 
| 62 | 
schorsch | 
1.2 | 
        libtiff = env.Command(radlib(env['LIBPREFIX'] + 'tiff' + env['LIBSUFFIX']), | 
| 63 | 
schorsch | 
1.1 | 
                'tiff/config.local', | 
| 64 | 
schorsch | 
1.3 | 
        [('cd "%s"; ' | 
| 65 | 
  | 
  | 
        'sh ./configure -quiet -noninteractive ' | 
| 66 | 
  | 
  | 
                '-with-CC="$CC" -with-ENVOPTS="$CCFLAGS"; ' | 
| 67 | 
  | 
  | 
        'cd libtiff; ' | 
| 68 | 
  | 
  | 
        'make install;') % os.path.join(cwd, 'tiff')]) | 
| 69 | 
schorsch | 
1.1 | 
 | 
| 70 | 
  | 
  | 
        # tiff programs | 
| 71 | 
schorsch | 
1.2 | 
        ra_tiff = env.Program(target=radbin('ra_tiff'), source=Split('ra_tiff.c'), | 
| 72 | 
  | 
  | 
                LIBS=['tiff','rtpic','rtio','rtmem'] + mlib) | 
| 73 | 
schorsch | 
1.7 | 
        progs.append(ra_tiff) | 
| 74 | 
schorsch | 
1.1 | 
 | 
| 75 | 
schorsch | 
1.2 | 
        normtiff = env.Program(target=radbin('normtiff'), source=Split('normtiff.c'), | 
| 76 | 
  | 
  | 
                LIBS=['tiff','rtpic','rtio','rtmem'] + mlib) | 
| 77 | 
schorsch | 
1.7 | 
        progs.append(normtiff) | 
| 78 | 
schorsch | 
1.1 | 
 | 
| 79 | 
  | 
  | 
 | 
| 80 | 
  | 
  | 
# X11 targets | 
| 81 | 
schorsch | 
1.2 | 
if env.has_key('X11LIB'): | 
| 82 | 
schorsch | 
1.7 | 
    xincl = env.get('CPPPATH', []) + ['$X11INCLUDE'] | 
| 83 | 
  | 
  | 
    xlibp = env.get('LIBPATH', []) + ['$X11LIB'] | 
| 84 | 
schorsch | 
1.2 | 
    xlibs = ['X11','rtpic','rtio','rtmath','rtargs','rtmem'] | 
| 85 | 
schorsch | 
1.6 | 
    x11findwind = env.Object(source='../common/x11findwind.c', # XXX ../not/nice | 
| 86 | 
schorsch | 
1.7 | 
        CPPPATH=xincl) | 
| 87 | 
schorsch | 
1.2 | 
 | 
| 88 | 
  | 
  | 
    ximage = env.Program(target=radbin('ximage'), | 
| 89 | 
  | 
  | 
        source=Split('x11image.c x11raster.c')+[clrtab], | 
| 90 | 
schorsch | 
1.6 | 
        CPPPATH=xincl, LIBPATH=xlibp, LIBS=xlibs + mlib) | 
| 91 | 
schorsch | 
1.7 | 
    progs.append(ximage) | 
| 92 | 
schorsch | 
1.1 | 
 | 
| 93 | 
schorsch | 
1.2 | 
    xshowtrace = env.Program(target=radbin('xshowtrace'), | 
| 94 | 
schorsch | 
1.5 | 
        source=Split('xshowtrace.c') + [x11findwind], | 
| 95 | 
schorsch | 
1.6 | 
        CPPPATH=xincl, LIBPATH=xlibp, LIBS=xlibs + mlib) | 
| 96 | 
schorsch | 
1.7 | 
    progs.append(xshowtrace) | 
| 97 | 
schorsch | 
1.1 | 
 | 
| 98 | 
  | 
  | 
 | 
| 99 | 
schorsch | 
1.7 | 
if os.name == 'posix': # XXX ignoring trad.wsh | 
| 100 | 
  | 
  | 
        for s in Split('''normpat falsecolor pdfblur | 
| 101 | 
  | 
  | 
                        pmblur xyzimage phisto pdelta pgblur'''): | 
| 102 | 
  | 
  | 
                Default(env.InstallCsh(radbin(s), s + '.csh')) | 
| 103 | 
schorsch | 
1.8 | 
# XXX probably needs fixing | 
| 104 | 
  | 
  | 
#else: | 
| 105 | 
  | 
  | 
#       for s in Split('''falsecolor'''): | 
| 106 | 
  | 
  | 
#               Default(env.InstallCsh(radbin(s), s + '.csh')) | 
| 107 | 
schorsch | 
1.7 | 
 | 
| 108 | 
  | 
  | 
Default('#src/px') | 
| 109 | 
  | 
  | 
env.Install('$RAD_BINDIR', progs) | 
| 110 | 
  | 
  | 
 |