ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/Rmakefile
Revision: 2.79
Committed: Thu Sep 29 21:51:58 2016 UTC (7 years, 7 months ago) by greg
Branch: MAIN
Changes since 2.78: +4 -4 lines
Log Message:
Separated creation from use of contribution photon maps

File Contents

# User Rev Content
1 greg 2.79 # RCSid: $Id: Rmakefile,v 2.78 2016/09/26 20:19:30 greg Exp $
2 greg 1.56 #
3 greg 2.2 # Compiles for ray tracing programs.
4 greg 1.1 #
5    
6 greg 1.66 OPT = -O
7 greg 1.68 MACH = -DBSD
8 greg 2.33 CFLAGS = -I../common -L../lib $(OPT) $(MACH)
9 greg 2.49 SPECIAL =
10 greg 1.26 CC = cc
11 greg 2.15 MLIB = -lm
12 greg 1.35 LINT = lint
13 greg 2.33 LINTFLAGS = -DBSD
14 greg 1.1
15     #
16     # The following are user-definable:
17     #
18     DESTDIR = .
19 greg 1.66 INSTDIR = /usr/local/bin
20 greg 1.5 INSTALL = cp
21 greg 1.1
22     #
23     # The following paths must exist and be relative to root:
24     #
25 greg 1.33 DEVDIR = $(INSTDIR)/dev
26 greg 1.1 LIBDIR = /usr/local/lib/ray
27    
28     #
29 greg 1.2 # Library routines:
30 greg 1.1 #
31 greg 2.33 RLIB = ../lib/libradiance.a
32 schorsch 2.39 RCLIB = ../lib/libraycalls.a
33 schorsch 2.54 LIBS = -lrtrad $(MLIB)
34 greg 1.1
35     #
36 greg 2.44 # Device drivers for rvu (see also devtable.c):
37 greg 1.1 #
38 greg 1.39 DOBJS = devtable.o devcomm.o editline.o x11.o x11twind.o \
39     colortab.o
40 greg 1.46 DSRC = devtable.c devcomm.c editline.c x11.c x11twind.c \
41 greg 1.39 colortab.c
42     DLIBS = -lX11
43 greg 1.1
44     #
45     # Standard object files:
46     #
47    
48 greg 2.33 RTOBJS = rtmain.o rtrace.o duphead.o persist.o
49     RTSRC = rtmain.c rtrace.c duphead.c persist.c
50 greg 1.1
51 greg 2.33 RPOBJS = rpmain.o rpict.o srcdraw.o duphead.o persist.o
52     RPSRC = rpmain.c rpict.c srcdraw.c duphead.c persist.c
53 greg 1.1
54 greg 2.33 RVOBJS = rvmain.o rview.o rv2.o rv3.o $(DOBJS)
55     RVSRC = rvmain.c rview.c rv2.c rv3.c $(DSRC)
56    
57 greg 2.64 RCOBJS = rcmain.o rcontrib.o rc2.o rc3.o
58     RCSRC = rcmain.c rcontrib.c rc2.c rc3.c
59    
60 greg 2.58 RLOBJS = raycalls.o raypcalls.o rayfifo.o
61     RLSRC = raycalls.c raypcalls.c rayfifo.c
62 greg 1.1
63 greg 1.51 ROBJS = $(RAYOBJS) $(SURFOBJS) $(MATOBJS) \
64 greg 2.73 $(MODOBJS) $(SUPPOBJS) $(PMOBJS)
65 greg 1.51 RSRC = $(RAYSRC) $(SURFSRC) $(MATSRC) \
66 rschregle 2.77 $(MODSRC) $(SUPPSRC)
67 greg 1.1
68 greg 2.33 RAYOBJS = ambcomp.o ambient.o ambio.o freeobjmem.o initotypes.o \
69     preload.o raytrace.o renderopts.o
70     RAYSRC = ambcomp.c ambient.c ambio.c freeobjmem.c initotypes.c \
71     preload.c raytrace.c renderopts.c
72 greg 1.1
73 greg 2.43 SURFOBJS = source.o sphere.o srcobstr.o srcsupp.o srcsamp.o virtuals.o \
74     o_face.o o_cone.o o_instance.o o_mesh.o
75 greg 2.46 SURFSRC = sphere.c source.c srcobstr.c srcsupp.c srcsamp.c virtuals.c \
76 greg 2.43 o_face.c srcsamp.c o_cone.c o_instance.c o_mesh.c
77 greg 1.1
78 greg 2.3 MATOBJS = aniso.o normal.o dielectric.o m_clip.o glass.o m_brdf.o \
79 greg 2.69 m_mirror.o m_direct.o m_mist.o fprism.o m_alias.o m_bsdf.o \
80     ashikhmin.o
81 greg 2.13 MATSRC = aniso.c normal.c dielectric.c m_clip.c glass.c m_brdf.c \
82 greg 2.69 m_mirror.c m_direct.c m_mist.c fprism.c m_alias.c m_bsdf.c \
83     ashikhmin.c
84 greg 1.1
85 greg 1.3 MODOBJS = p_func.o t_func.o p_data.o t_data.o text.o mx_func.o mx_data.o
86 greg 1.35 MODSRC = p_func.c t_func.c p_data.c t_data.c text.c mx_func.c mx_data.c
87 greg 1.1
88 greg 2.33 SUPPOBJS = func.o noise3.o data.o
89     SUPPSRC = func.c noise3.c data.c
90 greg 1.1
91 greg 2.73 PMOBJS = pmap.o pmapsrc.o pmapmat.o pmaprand.o pmapio.o pmapdata.o \
92     pmapbias.o pmapparm.o pmapcontrib.o pmapamb.o pmapray.o pmapopt.o \
93 rschregle 2.77 pmapdiag.o pmaptype.o oocmorton.o oococt.o oocsort.o oocbuild.o \
94 greg 2.79 oocnn.o ooccache.o pmutil.o pmcontrib2.o
95 greg 2.73 PMSRC = pmap.c pmapsrc.c pmapmat.c pmaprand.c pmapio.c pmapdata.c \
96     pmapbias.c pmapparm.c pmapcontrib.c pmapamb.c pmapray.c pmapopt.c \
97 rschregle 2.77 pmapdiag.c pmaptype.c pmapkdt.c pmapooc.c oocmorton.c oococt.c \
98 greg 2.79 oocsort.c oocbuild.c oocnn.c ooccache.c pmutil.c pmcontrib2.c
99 greg 2.73
100 greg 1.62 HEADERS = ambient.h ray.h data.h otspecial.h source.h
101    
102 greg 1.1 #
103     # What this makefile produces:
104     #
105    
106 greg 2.64 PROGS = $(DESTDIR)/rtrace $(DESTDIR)/rpict $(DESTDIR)/rvu $(DESTDIR)/rcontrib \
107 greg 2.73 $(DESTDIR)/lookamb $(DESTDIR)/mkpmap $(DESTDIR)/pmapdump
108 greg 1.1
109 greg 2.36 all: $(PROGS) $(RCLIB) $(SPECIAL)
110 greg 1.1
111 greg 2.33 install: all rayinit.cal
112 greg 1.1 $(INSTALL) $(PROGS) $(INSTDIR)
113 greg 2.44 cd $(INSTDIR) ; rm -f rview ; ln -s rvu rview
114 greg 2.65 cd $(INSTDIR) ; rm -f rtcontrib ; ln -s rcontrib rtcontrib
115 greg 1.58 rm -f $(LIBDIR)/rayinit.cal
116     cp rayinit.cal $(LIBDIR)
117 greg 1.1
118 gwlarson 2.29 ogl:
119 greg 1.57
120 greg 1.1 clean:
121 greg 2.72 set nonomatch; rm -f $(PROGS) *.o
122 greg 1.35
123     lint: $(RVSRC)
124     $(LINT) $(LINTFLAGS) -DRVIEW $(RVSRC) $(LIBS)
125 greg 1.1
126     #
127     # Links:
128     #
129    
130 greg 2.59 $(DESTDIR)/rtrace: $(RTOBJS) $(RCLIB) $(RLIB)
131     $(CC) $(CFLAGS) -o $(DESTDIR)/rtrace $(RTOBJS) $(RCLIB) $(RLIB) $(LIBS)
132 greg 1.1
133 greg 2.33 $(DESTDIR)/rpict: $(RPOBJS) $(RLIB)
134     $(CC) $(CFLAGS) -o $(DESTDIR)/rpict $(RPOBJS) $(RLIB) $(LIBS)
135 greg 1.1
136 greg 2.57 $(DESTDIR)/rvu: $(RVOBJS) $(RCLIB) $(RLIB)
137     $(CC) $(CFLAGS) -o $(DESTDIR)/rvu $(RVOBJS) $(RCLIB) \
138     $(RLIB) $(LIBS) $(DLIBS)
139 greg 1.1
140 greg 2.64 $(DESTDIR)/rcontrib: $(RCOBJS) $(RLIB)
141     $(CC) $(CFLAGS) -o $(DESTDIR)/rcontrib $(RCOBJS) $(RLIB) $(LIBS)
142    
143 greg 2.7 $(DESTDIR)/lookamb: lookamb.o ambio.o
144 gwlarson 2.31 $(CC) $(CFLAGS) -o $(DESTDIR)/lookamb lookamb.o ambio.o $(LIBS)
145 greg 1.1
146 greg 2.73 $(DESTDIR)/mkpmap: mkpmap.o $(RLIB)
147     $(CC) $(CFLAGS) -o $(DESTDIR)/mkpmap mkpmap.o $(RLIB) $(LIBS)
148    
149     $(DESTDIR)/pmapdump: pmapdump.o pmaptype.o pmapparm.o
150     $(CC) $(CFLAGS) -o pmapdump pmapdump.o pmaptype.o pmapparm.o $(LIBS)
151    
152 greg 2.33 $(RLIB): $(ROBJS) Version.o
153 greg 2.60 rm -f $(RLIB)
154 greg 2.33 ar rc $(RLIB) $(ROBJS) Version.o
155     -ranlib $(RLIB)
156 greg 2.36
157     $(RCLIB): $(RLOBJS)
158 greg 2.61 rm -f $(RCLIB)
159 greg 2.36 ar rc $(RCLIB) $(RLOBJS)
160     -ranlib $(RCLIB)
161 greg 1.69
162 greg 1.1 #
163 greg 1.51 # Uncomment the following to model dispersion:
164 greg 1.1 #
165 greg 1.55 dielectric.o: dielectric.c source.h
166     $(CC) $(CFLAGS) -DDISPERSE -c dielectric.c
167    
168 greg 1.1 # end of dispersion compiles.
169    
170 greg 1.33 devcomm.o: devcomm.c
171     $(CC) $(CFLAGS) -DDEVPATH=\"$(DEVDIR)\" -c devcomm.c
172    
173 greg 1.62 #
174     # Version module:
175     #
176    
177 greg 1.63 Version.c: VERSION $(RSRC) $(HEADERS)
178     ( cat VERSION ; date ; whoami ; hostname ) > Version.c
179 greg 1.62 ed - Version.c < verscript.ed
180 greg 1.27
181 greg 1.1 #
182     # Include dependencies:
183     #
184    
185 greg 2.49 ambio.o colortab.o data.o devcomm.o \
186 greg 2.33 devmain.o lookamb.o rview.o x11.o: ../common/color.h
187 greg 1.1
188 greg 2.33 freeobjmem.o o_cone.o srcsupp.o: ../common/cone.h
189 greg 1.1
190 greg 2.33 data.o freeobjmem.o m_brdf.o mx_data.o \
191     p_data.o raycalls.o t_data.o: data.h
192 greg 1.1
193 greg 2.49 devcomm.o devmain.o devtable.o \
194     editline.o x11.o: driver.h
195 greg 1.1
196 greg 2.33 freeobjmem.o o_face.o srcsupp.o: ../common/face.h
197 greg 1.1
198 greg 1.51 ambient.o raytrace.o rpmain.o rtmain.o \
199 greg 2.43 rtrace.o rvmain.o rv2.o rv3.o: ../common/octree.h
200 greg 1.1
201 greg 2.34 o_instance.o: ../common/instance.h
202 greg 1.1
203 greg 2.70 ambient.o aniso.o ashikhmin.o dielectric.o freeobjmem.o func.o glass.o \
204     initotypes.o m_brdf.o m_direct.o m_mirror.o normal.o o_cone.o preload.o \
205 greg 2.33 raycalls.o raytrace.o rtrace.o rv2.o source.o sphere.o srcsupp.o text.o \
206 greg 2.47 srcdraw.o srcobstr.o virtuals.o: ../common/otypes.h
207 greg 1.1
208 greg 2.70 ambient.o ambcomp.o aniso.o ashikhmin.o normal.o raycalls.o raytrace.o \
209     rpict.o rvmain.o rtmain.o rpmain.o rcmain.o persist.o source.o rv3.o \
210 greg 2.33 srcsamp.o virtuals.o: ../common/random.h
211    
212 greg 2.70 ambcomp.o ambient.o aniso.o ashikhmin.o dielectric.o freeobjmem.o func.o \
213     glass.o m_bsdf.o m_brdf.o m_clip.o m_direct.o m_mirror.o m_mist.o mx_data.o \
214     o_mesh.o mx_func.o normal.o o_cone.o o_face.o o_instance.o p_data.o p_func.o \
215 greg 2.58 raycalls.o raypcalls.o rayfifo.o raytrace.o rpict.o rtrace.o rv2.o rv3.o rview.o \
216 greg 2.43 source.o sphere.o srcdraw.o srcobstr.o srcsamp.o srcsupp.o t_data.o t_func.o \
217 greg 2.66 text.o rpmain.o rtmain.o rvmain.o virtuals.o m_alias.o rcmain.o \
218     rcontrib.o rc2.o rc3.o: ray.h \
219 greg 2.37 ../common/standard.h ../common/rtmisc.h ../common/rtio.h ../common/rtmath.h \
220 greg 2.56 ../common/rterror.h ../common/octree.h \
221 greg 1.65 ../common/mat4.h ../common/fvect.h ../common/object.h ../common/color.h
222 greg 1.1
223 greg 2.33 rv2.o rv3.o rview.o: rpaint.h driver.h ../common/view.h ../common/resolu.h
224 greg 1.1
225 greg 2.33 m_direct.o m_mirror.o m_mist.o dielectric.o raycalls.o \
226 greg 2.50 rpict.o rpmain.o rtmain.o rvmain.o rv2.o source.o srcdraw.o \
227 greg 2.43 srcobstr.o srcsamp.o srcsupp.o virtuals.o: source.h
228 greg 1.1
229 greg 2.33 cone.o data.o devcomm.o initotypes.o fprism.o preload.o \
230 greg 2.37 duphead.o octree.o: ../common/standard.h ../common/rtmisc.h \
231 greg 2.56 ../common/rtio.h ../common/rtmath.h \
232 greg 2.37 ../common/rterror.h ../common/mat4.h ../common/fvect.h
233 greg 1.38
234 greg 2.23 ambio.o: ../common/fvect.h
235    
236 greg 2.43 initotypes.o srcobstr.o raytrace.o: otspecial.h
237 greg 1.44
238 greg 2.33 rpmain.o rtmain.o rvmain.o rpict.o \
239     srcdraw.o: ../common/view.h ../common/resolu.h
240 greg 1.15
241 greg 2.71 rpict.o: ../common/hilbert.h
242    
243 greg 1.15 x11.o x11twind.o: x11twind.h
244 greg 1.42
245     x11.o: x11icon.h
246 greg 1.47
247 greg 2.33 ambient.o ambcomp.o ambio.o lookamb.o raycalls.o: ambient.h
248 greg 1.70
249 gregl 2.26 data.o rpmain.o rtmain.o rvmain.o rpict.o rtrace.o \
250     rv2.o: ../common/resolu.h
251 greg 2.2
252 greg 2.3 aniso.o func.o m_brdf.o m_direct.o mx_data.o mx_func.o p_data.o \
253 greg 2.38 p_func.o t_data.o t_func.o: func.h ../common/calcomp.h
254 greg 2.25
255 greg 2.63 preload.o: data.h func.h ../common/object.h ../common/face.h \
256     ../common/cone.h ../common/instance.h ../common/mesh.h \
257     ../common/color.h ../common/bsdf.h ../common/otypes.h
258 greg 2.9
259 greg 2.45 rtmain.o rpmain.o rvmain.o persist.o duphead.o \
260     renderopts.o rpict.o: ../common/paths.h
261 greg 2.33
262     freeobjmem.o raycalls.o text.o: ../common/font.h
263    
264     raypcalls.o: ../common/selcall.h
265 greg 2.34
266     o_mesh.o: ../common/mesh.h
267 greg 2.38
268     noise3.o: ../common/calcomp.h
269 greg 2.52
270 greg 2.70 aniso.o ashikhmin.o dielectric.o freeobjmem.o glass.o initotypes.o \
271 greg 2.52 m_alias.o m_brdf.o m_clip.o m_direct.o m_mirror.o m_mist.o \
272     mx_data.o mx_func.o normal.o o_cone.o o_face.o o_instance.o \
273     o_mesh.o p_data.o p_func.o source.o sphere.o t_data.o t_func.o \
274 greg 2.55 srcobstr.o text.o: rtotypes.h
275 greg 2.62
276     m_bsdf.o: ambient.h source.h func.h \
277 greg 2.63 ../common/calcomp.h ../common/bsdf.h ../common/random.h
278 greg 2.66
279     rcmain.o rcontrib.o rc2.o rc3.o: rcontrib.h \
280     ../common/platform.h ../common/paths.h ../common/lookup.h \
281 greg 2.67 func.h ../common/calcomp.h ../common/rtprocess.h
282 greg 2.66
283     rcmain.o: source.h ambient.h
284    
285 greg 2.68 rcontrib.o: source.h ../common/otypes.h
286 greg 2.66
287     rc2.o: ../common/resolu.h
288    
289 greg 2.67 rc3.o: ../common/selcall.h
290 greg 2.73
291     #
292     # Photon map include dependencies (via 'gcc -MM -I../common')
293     #
294     ambient.o: pmapparm.h pmaptype.h pmapamb.h pmapdata.h
295    
296 rschregle 2.77 dielectric.o glass.o normal.o m_brdf.o m_bsdf.o ashikhmin.o aniso.o: \
297 greg 2.73 pmapparm.h pmaptype.h pmapmat.h pmap.h pmapdata.h
298    
299     raycalls.o rpmain.o rcmain.o rtmain.o rvmain.o: \
300     pmapparm.h pmaptype.h pmapray.h
301    
302     rcmain.o: pmapparm.h pmaptype.h pmapray.h pmapcontrib.h pmapdata.h
303    
304     raytrace.o: pmapparm.h pmaptype.h pmap.h pmapdata.h
305    
306     renderopts.o: pmapparm.h pmaptype.h pmapopt.h
307    
308     rpict.o: pmapparm.h pmaptype.h pmapbias.h pmapdata.h pmapdiag.h
309    
310     source.o: pmapparm.h pmaptype.h pmap.h pmapdata.h pmapsrc.h
311    
312     pmapamb.o: pmapamb.c pmapamb.h pmapdata.h ray.h ../common/standard.h \
313     ../common/copyright.h ../common/rtio.h ../common/rtmisc.h \
314     ../common/rtmath.h ../common/tiff.h ../common/mat4.h ../common/fvect.h \
315     ../common/rterror.h ../common/octree.h ../common/object.h \
316     ../common/color.h pmapparm.h pmaptype.h ../common/lookup.h pmap.h
317    
318     pmapbias.o: pmapbias.c pmapbias.h pmapdata.h ray.h ../common/standard.h \
319     ../common/copyright.h ../common/rtio.h ../common/rtmisc.h \
320     ../common/rtmath.h ../common/tiff.h ../common/mat4.h ../common/fvect.h \
321     ../common/rterror.h ../common/octree.h ../common/object.h \
322     ../common/color.h pmapparm.h pmaptype.h ../common/lookup.h pmap.h \
323     pmaprand.h
324    
325     pmap.o: pmap.c pmap.h pmapparm.h pmaptype.h pmapdata.h ray.h \
326     ../common/standard.h ../common/copyright.h ../common/rtio.h \
327     ../common/rtmisc.h ../common/rtmath.h ../common/tiff.h ../common/mat4.h \
328     ../common/fvect.h ../common/rterror.h ../common/octree.h \
329     ../common/object.h ../common/color.h ../common/lookup.h pmapmat.h \
330     pmapsrc.h source.h pmaprand.h pmapio.h pmapbias.h pmapdiag.h \
331     ../common/platform.h ../common/otypes.h
332    
333 greg 2.79 pmapcontrib.o pmcontrib2.o: pmapcontrib.c pmapcontrib.h pmapdata.h ray.h \
334 greg 2.73 ../common/standard.h ../common/copyright.h ../common/rtio.h \
335     ../common/rtmisc.h ../common/rtmath.h ../common/tiff.h ../common/mat4.h \
336     ../common/fvect.h ../common/rterror.h ../common/octree.h \
337     ../common/object.h ../common/color.h pmapparm.h pmaptype.h \
338     ../common/lookup.h pmap.h pmapmat.h pmapsrc.h source.h pmaprand.h \
339     pmapio.h pmapdiag.h ../common/platform.h rcontrib.h ../common/paths.h \
340     ../common/rtprocess.h ../common/paths.h func.h ../common/calcomp.h \
341     ../common/otypes.h
342    
343     pmapdata.o: pmapdata.c pmap.h pmapparm.h pmaptype.h pmapdata.h ray.h \
344 rschregle 2.77 pmapkdt.h pmapkdt.c pmapooc.h pmapooc.c oococt.h oocnn.h ooccache.h \
345 greg 2.73 ../common/standard.h ../common/copyright.h ../common/rtio.h \
346     ../common/rtmisc.h ../common/rtmath.h ../common/tiff.h ../common/mat4.h \
347     ../common/fvect.h ../common/rterror.h ../common/octree.h \
348     ../common/object.h ../common/color.h ../common/lookup.h pmaprand.h \
349     pmapmat.h ../common/otypes.h source.h rcontrib.h ../common/platform.h \
350     ../common/paths.h ../common/rtprocess.h ../common/paths.h func.h \
351 rschregle 2.77 ../common/calcomp.h
352 greg 2.73
353     pmapdiag.o: pmapdiag.c pmapdiag.h ../common/platform.h pmapdata.h ray.h \
354     ../common/standard.h ../common/copyright.h ../common/rtio.h \
355     ../common/rtmisc.h ../common/rtmath.h ../common/tiff.h ../common/mat4.h \
356     ../common/fvect.h ../common/rterror.h ../common/octree.h \
357     ../common/object.h ../common/color.h pmapparm.h pmaptype.h \
358     ../common/lookup.h
359    
360     pmapdump.o: pmapdump.c pmapio.h pmapdata.h ray.h ../common/standard.h \
361     ../common/copyright.h ../common/rtio.h ../common/rtmisc.h \
362     ../common/rtmath.h ../common/tiff.h ../common/mat4.h ../common/fvect.h \
363     ../common/rterror.h ../common/octree.h ../common/object.h \
364     ../common/color.h pmapparm.h pmaptype.h ../common/lookup.h \
365     ../common/rtio.h ../common/resolu.h
366    
367     pmapio.o: pmapio.c pmapio.h pmapdata.h ray.h ../common/standard.h \
368     ../common/copyright.h ../common/rtio.h ../common/rtmisc.h \
369     ../common/rtmath.h ../common/tiff.h ../common/mat4.h ../common/fvect.h \
370     ../common/rterror.h ../common/octree.h ../common/object.h \
371     ../common/color.h pmapparm.h pmaptype.h ../common/lookup.h pmapdiag.h \
372     ../common/platform.h ../common/resolu.h
373    
374     pmapmat.o: pmapmat.c pmapmat.h pmap.h pmapparm.h pmaptype.h pmapdata.h \
375     ray.h ../common/standard.h ../common/copyright.h ../common/rtio.h \
376     ../common/rtmisc.h ../common/rtmath.h ../common/tiff.h ../common/mat4.h \
377     ../common/fvect.h ../common/rterror.h ../common/octree.h \
378     ../common/object.h ../common/color.h ../common/lookup.h pmaprand.h \
379     ../common/otypes.h data.h func.h ../common/calcomp.h ../common/bsdf.h \
380     ../common/ccolor.h
381    
382     pmapopt.o: pmapopt.c pmapparm.h pmaptype.h ../common/rtio.h \
383     ../common/rterror.h
384    
385     pmapparm.o: pmapparm.c pmapparm.h pmaptype.h pmapdata.h ray.h \
386     ../common/standard.h ../common/copyright.h ../common/rtio.h \
387     ../common/rtmisc.h ../common/rtmath.h ../common/tiff.h ../common/mat4.h \
388     ../common/fvect.h ../common/rterror.h ../common/octree.h \
389     ../common/object.h ../common/color.h ../common/lookup.h
390    
391     pmapray.o: pmapray.c pmapray.h ray.h ../common/standard.h \
392     ../common/copyright.h ../common/rtio.h ../common/rtmisc.h \
393     ../common/rtmath.h ../common/tiff.h ../common/mat4.h ../common/fvect.h \
394     ../common/rterror.h ../common/octree.h ../common/object.h \
395     ../common/color.h pmapparm.h pmaptype.h pmap.h pmapdata.h \
396     ../common/lookup.h
397    
398     pmapsrc.o: pmapsrc.c pmapsrc.h ray.h ../common/standard.h \
399     ../common/copyright.h ../common/rtio.h ../common/rtmisc.h \
400     ../common/rtmath.h ../common/tiff.h ../common/mat4.h ../common/fvect.h \
401     ../common/rterror.h ../common/octree.h ../common/object.h \
402     ../common/color.h pmapparm.h pmaptype.h source.h pmap.h pmapdata.h \
403     ../common/lookup.h pmaprand.h ../common/otypes.h
404    
405 greg 2.78 pmutil.o: pmap.h pmapio.h pmapdata.h pmapparm.h pmaptype.h pmapbias.h \
406     ../common/otypes.h
407    
408 greg 2.73 pmaptype.o: pmaptype.c pmaptype.h
409    
410 rschregle 2.77 oococt.o: oococt.c oococt.h oocsort.h ooccache.h \
411     ../common/rtio.h ../common/fvect.h
412    
413     ooccache.o: ooccache.c ooccache.h
414    
415     oocsort.o: oocsort.c oocsort.h ../common/fvect.h
416    
417     oocbuild.o: oocbuild.c oocbuild.h oocsort.h oococt.h
418    
419     oocnn.o: oocnn.c oocnn.h oococt.h oocsort.h