ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/Rmakefile
Revision: 2.76
Committed: Wed Sep 2 18:59:01 2015 UTC (8 years, 8 months ago) by greg
Branch: MAIN
CVS Tags: rad5R0
Changes since 2.75: +2 -2 lines
Log Message:
Had to reinstate ambRayInPmap() macro to avoid over-counting bug

File Contents

# User Rev Content
1 greg 2.76 # RCSid: $Id: Rmakefile,v 2.75 2015/08/21 01:57:56 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 greg 2.75 $(MODSRC) $(SUPPSRC) $(PMSRC)
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     pmapdiag.o pmaptype.o
94     PMSRC = pmap.c pmapsrc.c pmapmat.c pmaprand.c pmapio.c pmapdata.c \
95     pmapbias.c pmapparm.c pmapcontrib.c pmapamb.c pmapray.c pmapopt.c \
96     pmapdiag.c pmaptype.c
97    
98 greg 1.62 HEADERS = ambient.h ray.h data.h otspecial.h source.h
99    
100 greg 1.1 #
101     # What this makefile produces:
102     #
103    
104 greg 2.64 PROGS = $(DESTDIR)/rtrace $(DESTDIR)/rpict $(DESTDIR)/rvu $(DESTDIR)/rcontrib \
105 greg 2.73 $(DESTDIR)/lookamb $(DESTDIR)/mkpmap $(DESTDIR)/pmapdump
106 greg 1.1
107 greg 2.36 all: $(PROGS) $(RCLIB) $(SPECIAL)
108 greg 1.1
109 greg 2.33 install: all rayinit.cal
110 greg 1.1 $(INSTALL) $(PROGS) $(INSTDIR)
111 greg 2.44 cd $(INSTDIR) ; rm -f rview ; ln -s rvu rview
112 greg 2.65 cd $(INSTDIR) ; rm -f rtcontrib ; ln -s rcontrib rtcontrib
113 greg 1.58 rm -f $(LIBDIR)/rayinit.cal
114     cp rayinit.cal $(LIBDIR)
115 greg 1.1
116 gwlarson 2.29 ogl:
117 greg 1.57
118 greg 1.1 clean:
119 greg 2.72 set nonomatch; rm -f $(PROGS) *.o
120 greg 1.35
121     lint: $(RVSRC)
122     $(LINT) $(LINTFLAGS) -DRVIEW $(RVSRC) $(LIBS)
123 greg 1.1
124     #
125     # Links:
126     #
127    
128 greg 2.59 $(DESTDIR)/rtrace: $(RTOBJS) $(RCLIB) $(RLIB)
129     $(CC) $(CFLAGS) -o $(DESTDIR)/rtrace $(RTOBJS) $(RCLIB) $(RLIB) $(LIBS)
130 greg 1.1
131 greg 2.33 $(DESTDIR)/rpict: $(RPOBJS) $(RLIB)
132     $(CC) $(CFLAGS) -o $(DESTDIR)/rpict $(RPOBJS) $(RLIB) $(LIBS)
133 greg 1.1
134 greg 2.57 $(DESTDIR)/rvu: $(RVOBJS) $(RCLIB) $(RLIB)
135     $(CC) $(CFLAGS) -o $(DESTDIR)/rvu $(RVOBJS) $(RCLIB) \
136     $(RLIB) $(LIBS) $(DLIBS)
137 greg 1.1
138 greg 2.64 $(DESTDIR)/rcontrib: $(RCOBJS) $(RLIB)
139     $(CC) $(CFLAGS) -o $(DESTDIR)/rcontrib $(RCOBJS) $(RLIB) $(LIBS)
140    
141 greg 2.7 $(DESTDIR)/lookamb: lookamb.o ambio.o
142 gwlarson 2.31 $(CC) $(CFLAGS) -o $(DESTDIR)/lookamb lookamb.o ambio.o $(LIBS)
143 greg 1.1
144 greg 2.73 $(DESTDIR)/mkpmap: mkpmap.o $(RLIB)
145     $(CC) $(CFLAGS) -o $(DESTDIR)/mkpmap mkpmap.o $(RLIB) $(LIBS)
146    
147     $(DESTDIR)/pmapdump: pmapdump.o pmaptype.o pmapparm.o
148     $(CC) $(CFLAGS) -o pmapdump pmapdump.o pmaptype.o pmapparm.o $(LIBS)
149    
150 greg 2.33 $(RLIB): $(ROBJS) Version.o
151 greg 2.60 rm -f $(RLIB)
152 greg 2.33 ar rc $(RLIB) $(ROBJS) Version.o
153     -ranlib $(RLIB)
154 greg 2.36
155     $(RCLIB): $(RLOBJS)
156 greg 2.61 rm -f $(RCLIB)
157 greg 2.36 ar rc $(RCLIB) $(RLOBJS)
158     -ranlib $(RCLIB)
159 greg 1.69
160 greg 1.1 #
161 greg 1.51 # Uncomment the following to model dispersion:
162 greg 1.1 #
163 greg 1.55 dielectric.o: dielectric.c source.h
164     $(CC) $(CFLAGS) -DDISPERSE -c dielectric.c
165    
166 greg 1.1 # end of dispersion compiles.
167    
168 greg 1.33 devcomm.o: devcomm.c
169     $(CC) $(CFLAGS) -DDEVPATH=\"$(DEVDIR)\" -c devcomm.c
170    
171 greg 1.62 #
172     # Version module:
173     #
174    
175 greg 1.63 Version.c: VERSION $(RSRC) $(HEADERS)
176     ( cat VERSION ; date ; whoami ; hostname ) > Version.c
177 greg 1.62 ed - Version.c < verscript.ed
178 greg 1.27
179 greg 1.1 #
180     # Include dependencies:
181     #
182    
183 greg 2.49 ambio.o colortab.o data.o devcomm.o \
184 greg 2.33 devmain.o lookamb.o rview.o x11.o: ../common/color.h
185 greg 1.1
186 greg 2.33 freeobjmem.o o_cone.o srcsupp.o: ../common/cone.h
187 greg 1.1
188 greg 2.33 data.o freeobjmem.o m_brdf.o mx_data.o \
189     p_data.o raycalls.o t_data.o: data.h
190 greg 1.1
191 greg 2.49 devcomm.o devmain.o devtable.o \
192     editline.o x11.o: driver.h
193 greg 1.1
194 greg 2.33 freeobjmem.o o_face.o srcsupp.o: ../common/face.h
195 greg 1.1
196 greg 1.51 ambient.o raytrace.o rpmain.o rtmain.o \
197 greg 2.43 rtrace.o rvmain.o rv2.o rv3.o: ../common/octree.h
198 greg 1.1
199 greg 2.34 o_instance.o: ../common/instance.h
200 greg 1.1
201 greg 2.70 ambient.o aniso.o ashikhmin.o dielectric.o freeobjmem.o func.o glass.o \
202     initotypes.o m_brdf.o m_direct.o m_mirror.o normal.o o_cone.o preload.o \
203 greg 2.33 raycalls.o raytrace.o rtrace.o rv2.o source.o sphere.o srcsupp.o text.o \
204 greg 2.47 srcdraw.o srcobstr.o virtuals.o: ../common/otypes.h
205 greg 1.1
206 greg 2.70 ambient.o ambcomp.o aniso.o ashikhmin.o normal.o raycalls.o raytrace.o \
207     rpict.o rvmain.o rtmain.o rpmain.o rcmain.o persist.o source.o rv3.o \
208 greg 2.33 srcsamp.o virtuals.o: ../common/random.h
209    
210 greg 2.70 ambcomp.o ambient.o aniso.o ashikhmin.o dielectric.o freeobjmem.o func.o \
211     glass.o m_bsdf.o m_brdf.o m_clip.o m_direct.o m_mirror.o m_mist.o mx_data.o \
212     o_mesh.o mx_func.o normal.o o_cone.o o_face.o o_instance.o p_data.o p_func.o \
213 greg 2.58 raycalls.o raypcalls.o rayfifo.o raytrace.o rpict.o rtrace.o rv2.o rv3.o rview.o \
214 greg 2.43 source.o sphere.o srcdraw.o srcobstr.o srcsamp.o srcsupp.o t_data.o t_func.o \
215 greg 2.66 text.o rpmain.o rtmain.o rvmain.o virtuals.o m_alias.o rcmain.o \
216     rcontrib.o rc2.o rc3.o: ray.h \
217 greg 2.37 ../common/standard.h ../common/rtmisc.h ../common/rtio.h ../common/rtmath.h \
218 greg 2.56 ../common/rterror.h ../common/octree.h \
219 greg 1.65 ../common/mat4.h ../common/fvect.h ../common/object.h ../common/color.h
220 greg 1.1
221 greg 2.33 rv2.o rv3.o rview.o: rpaint.h driver.h ../common/view.h ../common/resolu.h
222 greg 1.1
223 greg 2.33 m_direct.o m_mirror.o m_mist.o dielectric.o raycalls.o \
224 greg 2.50 rpict.o rpmain.o rtmain.o rvmain.o rv2.o source.o srcdraw.o \
225 greg 2.43 srcobstr.o srcsamp.o srcsupp.o virtuals.o: source.h
226 greg 1.1
227 greg 2.33 cone.o data.o devcomm.o initotypes.o fprism.o preload.o \
228 greg 2.37 duphead.o octree.o: ../common/standard.h ../common/rtmisc.h \
229 greg 2.56 ../common/rtio.h ../common/rtmath.h \
230 greg 2.37 ../common/rterror.h ../common/mat4.h ../common/fvect.h
231 greg 1.38
232 greg 2.23 ambio.o: ../common/fvect.h
233    
234 greg 2.43 initotypes.o srcobstr.o raytrace.o: otspecial.h
235 greg 1.44
236 greg 2.33 rpmain.o rtmain.o rvmain.o rpict.o \
237     srcdraw.o: ../common/view.h ../common/resolu.h
238 greg 1.15
239 greg 2.71 rpict.o: ../common/hilbert.h
240    
241 greg 1.15 x11.o x11twind.o: x11twind.h
242 greg 1.42
243     x11.o: x11icon.h
244 greg 1.47
245 greg 2.33 ambient.o ambcomp.o ambio.o lookamb.o raycalls.o: ambient.h
246 greg 1.70
247 gregl 2.26 data.o rpmain.o rtmain.o rvmain.o rpict.o rtrace.o \
248     rv2.o: ../common/resolu.h
249 greg 2.2
250 greg 2.3 aniso.o func.o m_brdf.o m_direct.o mx_data.o mx_func.o p_data.o \
251 greg 2.38 p_func.o t_data.o t_func.o: func.h ../common/calcomp.h
252 greg 2.25
253 greg 2.63 preload.o: data.h func.h ../common/object.h ../common/face.h \
254     ../common/cone.h ../common/instance.h ../common/mesh.h \
255     ../common/color.h ../common/bsdf.h ../common/otypes.h
256 greg 2.9
257 greg 2.45 rtmain.o rpmain.o rvmain.o persist.o duphead.o \
258     renderopts.o rpict.o: ../common/paths.h
259 greg 2.33
260     freeobjmem.o raycalls.o text.o: ../common/font.h
261    
262     raypcalls.o: ../common/selcall.h
263 greg 2.34
264     o_mesh.o: ../common/mesh.h
265 greg 2.38
266     noise3.o: ../common/calcomp.h
267 greg 2.52
268 greg 2.70 aniso.o ashikhmin.o dielectric.o freeobjmem.o glass.o initotypes.o \
269 greg 2.52 m_alias.o m_brdf.o m_clip.o m_direct.o m_mirror.o m_mist.o \
270     mx_data.o mx_func.o normal.o o_cone.o o_face.o o_instance.o \
271     o_mesh.o p_data.o p_func.o source.o sphere.o t_data.o t_func.o \
272 greg 2.55 srcobstr.o text.o: rtotypes.h
273 greg 2.62
274     m_bsdf.o: ambient.h source.h func.h \
275 greg 2.63 ../common/calcomp.h ../common/bsdf.h ../common/random.h
276 greg 2.66
277     rcmain.o rcontrib.o rc2.o rc3.o: rcontrib.h \
278     ../common/platform.h ../common/paths.h ../common/lookup.h \
279 greg 2.67 func.h ../common/calcomp.h ../common/rtprocess.h
280 greg 2.66
281     rcmain.o: source.h ambient.h
282    
283 greg 2.68 rcontrib.o: source.h ../common/otypes.h
284 greg 2.66
285     rc2.o: ../common/resolu.h
286    
287 greg 2.67 rc3.o: ../common/selcall.h
288 greg 2.73
289     #
290     # Photon map include dependencies (via 'gcc -MM -I../common')
291     #
292    
293    
294     ambient.o: pmapparm.h pmaptype.h pmapamb.h pmapdata.h
295    
296 greg 2.76 aniso.o ashikhmin.o dielectric.o glass.o m_brdf.o m_bsdf.o normal.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     pmapcontrib.o: pmapcontrib.c pmapcontrib.h pmapdata.h ray.h \
334     ../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     ../common/standard.h ../common/copyright.h ../common/rtio.h \
345     ../common/rtmisc.h ../common/rtmath.h ../common/tiff.h ../common/mat4.h \
346     ../common/fvect.h ../common/rterror.h ../common/octree.h \
347     ../common/object.h ../common/color.h ../common/lookup.h pmaprand.h \
348     pmapmat.h ../common/otypes.h source.h rcontrib.h ../common/platform.h \
349     ../common/paths.h ../common/rtprocess.h ../common/paths.h func.h \
350     ../common/calcomp.h
351    
352     pmapdiag.o: pmapdiag.c pmapdiag.h ../common/platform.h pmapdata.h ray.h \
353     ../common/standard.h ../common/copyright.h ../common/rtio.h \
354     ../common/rtmisc.h ../common/rtmath.h ../common/tiff.h ../common/mat4.h \
355     ../common/fvect.h ../common/rterror.h ../common/octree.h \
356     ../common/object.h ../common/color.h pmapparm.h pmaptype.h \
357     ../common/lookup.h
358    
359     pmapdump.o: pmapdump.c pmapio.h pmapdata.h ray.h ../common/standard.h \
360     ../common/copyright.h ../common/rtio.h ../common/rtmisc.h \
361     ../common/rtmath.h ../common/tiff.h ../common/mat4.h ../common/fvect.h \
362     ../common/rterror.h ../common/octree.h ../common/object.h \
363     ../common/color.h pmapparm.h pmaptype.h ../common/lookup.h \
364     ../common/rtio.h ../common/resolu.h
365    
366     pmapio.o: pmapio.c pmapio.h pmapdata.h ray.h ../common/standard.h \
367     ../common/copyright.h ../common/rtio.h ../common/rtmisc.h \
368     ../common/rtmath.h ../common/tiff.h ../common/mat4.h ../common/fvect.h \
369     ../common/rterror.h ../common/octree.h ../common/object.h \
370     ../common/color.h pmapparm.h pmaptype.h ../common/lookup.h pmapdiag.h \
371     ../common/platform.h ../common/resolu.h
372    
373     pmapmat.o: pmapmat.c pmapmat.h pmap.h pmapparm.h pmaptype.h pmapdata.h \
374     ray.h ../common/standard.h ../common/copyright.h ../common/rtio.h \
375     ../common/rtmisc.h ../common/rtmath.h ../common/tiff.h ../common/mat4.h \
376     ../common/fvect.h ../common/rterror.h ../common/octree.h \
377     ../common/object.h ../common/color.h ../common/lookup.h pmaprand.h \
378     ../common/otypes.h data.h func.h ../common/calcomp.h ../common/bsdf.h \
379     ../common/ccolor.h
380    
381     pmapopt.o: pmapopt.c pmapparm.h pmaptype.h ../common/rtio.h \
382     ../common/rterror.h
383    
384     pmapparm.o: pmapparm.c pmapparm.h pmaptype.h pmapdata.h ray.h \
385     ../common/standard.h ../common/copyright.h ../common/rtio.h \
386     ../common/rtmisc.h ../common/rtmath.h ../common/tiff.h ../common/mat4.h \
387     ../common/fvect.h ../common/rterror.h ../common/octree.h \
388     ../common/object.h ../common/color.h ../common/lookup.h
389    
390     pmapray.o: pmapray.c pmapray.h ray.h ../common/standard.h \
391     ../common/copyright.h ../common/rtio.h ../common/rtmisc.h \
392     ../common/rtmath.h ../common/tiff.h ../common/mat4.h ../common/fvect.h \
393     ../common/rterror.h ../common/octree.h ../common/object.h \
394     ../common/color.h pmapparm.h pmaptype.h pmap.h pmapdata.h \
395     ../common/lookup.h
396    
397     pmapsrc.o: pmapsrc.c pmapsrc.h ray.h ../common/standard.h \
398     ../common/copyright.h ../common/rtio.h ../common/rtmisc.h \
399     ../common/rtmath.h ../common/tiff.h ../common/mat4.h ../common/fvect.h \
400     ../common/rterror.h ../common/octree.h ../common/object.h \
401     ../common/color.h pmapparm.h pmaptype.h source.h pmap.h pmapdata.h \
402     ../common/lookup.h pmaprand.h ../common/otypes.h
403    
404     pmaptype.o: pmaptype.c pmaptype.h
405