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