--- ray/src/util/SConscript 2004/11/05 22:15:44 1.9 +++ ray/src/util/SConscript 2005/09/14 09:28:35 1.11 @@ -9,14 +9,12 @@ progs = [] def radbin(name): return os.path.join('$RAD_BUILDBIN', name) def radlib(name): return os.path.join('$RAD_BUILDLIB', name) -setscan = env.Object(source='setscan.c') Version = env.Object(source='../rt/Version.c') # XXX ../rt/not_nice # standard targets PROGS = [ -('findglare', Split('findglare.c glareval.c glaresrc.c')+[setscan], +('findglare', Split('findglare.c glareval.c glaresrc.c setscan.c'), ['rtpic','rtargs','rtio','rtproc','rtmath','rtpath','rtmem','rterror']), -#('contour', Split('contour.c'), ['rtmath']), # XXX what is this? ('glarendx', Split('glarendx.c'), ['rtpic','rtio','rtargs','rtmath']), ('vwright', Split('vwright.c'), ['rtpic','rtio','rtargs','rtmath']), ('vwrays', Split('vwrays.c'), ['rtpic','rtio','rtargs','rtmath']), @@ -33,7 +31,8 @@ else: netlib = [] PROGS.append(('ranimate', ['ranimate.c', netproc], - ['rtpic','rtargs','rtio','rtcont','rtmem','rtpath','rtmath','rtnet','rterror'] + netlib)) + ['rtpic','rtargs','rtio','rtcont','rtmem','rtpath','rtmath', + 'rtnet','$RAD_SOCKETLIB','rterror'] + netlib)) for p in PROGS: prog = env.Program(target=radbin(p[0]), source=p[1], LIBS=p[2]+mlib) progs.append(prog)