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