ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/Rmakefile
Revision: 2.89
Committed: Thu Jul 18 18:51:56 2019 UTC (4 years, 9 months ago) by greg
Branch: MAIN
Changes since 2.88: +13 -2 lines
Log Message:
Created rcode_depth utility to encode/decode 16-bit depth maps

File Contents

# User Rev Content
1 greg 2.89 # RCSid: $Id: Rmakefile,v 2.88 2018/11/17 20:15:51 greg Exp $
2 greg 1.1 #
3 greg 2.10 # Radiance makefile for utility programs
4     #
5 greg 1.1
6 greg 1.16 MACH = -DBSD
7 greg 1.1
8     OPT = -O
9    
10 greg 2.31 CFLAGS = -I../common -I../rt -L../lib $(OPT) $(MACH)
11 greg 1.1
12 greg 2.46 MLIB = -lm
13    
14 greg 2.3 CC = cc
15    
16 gwlarson 2.28 SPECIAL =
17    
18 greg 1.14 INSTDIR = /usr/local/bin
19 greg 1.1
20 greg 2.12 LIBDIR = /usr/local/lib/ray
21    
22 greg 2.31 PROGS = findglare glarendx rpiece rad ranimate ranimove vwright getinfo \
23 greg 2.66 vwrays xglaresrc rsensor dctimestep rttree_reduce rcollate \
24 greg 2.89 eplus_adduvf rfluxmtx rmtxop wrapBSDF evalglare radcompare \
25     rcode_depth
26 greg 1.1
27 greg 2.77 LIBFILES = rambpos.cal ambpos.cal tregsamp.dat reinhartb.cal \
28 greg 2.80 klems_full.cal klems_half.cal klems_quarter.cal disk2square.cal \
29     minimalBSDFt.xml WINDOW6BSDFt.xml
30 greg 2.72
31 gwlarson 2.30 all: $(PROGS)
32 greg 1.1
33 greg 2.63 install: all $(SPECIAL) objview.pl objpict.pl glare.csh dayfact.csh \
34 greg 2.42 rlux.csh raddepend.csh trad.wsh objline.csh compamb.csh vinfo.csh \
35 greg 2.72 ltview.pl ltpict.pl genambpos.pl fieldcomb.csh genklemsamp.pl \
36 greg 2.84 genskyvec.pl genBSDF.pl bsdfview.pl rtpict.pl $(LIBFILES)
37 greg 1.1 cp $(PROGS) $(INSTDIR)
38 greg 2.63 cp objview.pl $(INSTDIR)/objview
39 greg 2.17 cp objline.csh $(INSTDIR)/objline
40 greg 2.63 cp objpict.pl $(INSTDIR)/objpict
41 greg 1.9 cp glare.csh $(INSTDIR)/glare
42 greg 1.11 cp dayfact.csh $(INSTDIR)/dayfact
43 greg 1.15 cp debugcal.csh $(INSTDIR)/debugcal
44 greg 2.6 cp rlux.csh $(INSTDIR)/rlux
45 greg 2.10 cp raddepend.csh $(INSTDIR)/raddepend
46 gregl 2.25 cp compamb.csh $(INSTDIR)/compamb
47 greg 2.31 cp vinfo.csh $(INSTDIR)/vinfo
48 greg 2.72 cp genambpos.pl $(INSTDIR)/genambpos
49 greg 2.42 cp fieldcomb.csh $(INSTDIR)/fieldcomb
50 greg 2.51 cp genklemsamp.pl $(INSTDIR)/genklemsamp
51 greg 2.55 cp genskyvec.pl $(INSTDIR)/genskyvec
52 greg 2.56 cp genBSDF.pl $(INSTDIR)/genBSDF
53 greg 2.83 cp bsdfview.pl $(INSTDIR)/bsdfview
54 greg 2.71 cp ltview.pl $(INSTDIR)/ltview
55     cp ltpict.pl $(INSTDIR)/ltpict
56 greg 2.84 cp rtpict.pl $(INSTDIR)/rtpict
57 greg 2.51 cd $(INSTDIR) ; chmod 755 objview objpict \
58     glare dayfact debugcal rlux raddepend objline \
59 greg 2.56 compamb vinfo genambpos fieldcomb genklemsamp \
60 greg 2.84 genskyvec genBSDF rtpict
61 greg 2.72 cd $(LIBDIR) && rm -f $(LIBFILES)
62     cp $(LIBFILES) $(LIBDIR)
63 greg 2.16 csh -f tradinstall.csh $(INSTDIR) $(LIBDIR)/tcl
64 greg 1.1
65     clean:
66 greg 2.73 set nonomatch; rm -f *.o $(PROGS) glrad Version.c x11findwind.c
67 greg 1.1
68 gwlarson 2.27 ogl: glrad
69     cp glrad $(INSTDIR)
70 gwlarson 2.28
71     sgi:
72    
73     sun:
74 gwlarson 2.27
75 greg 1.12 findglare: findglare.o glareval.o glaresrc.o setscan.o
76 greg 2.3 $(CC) $(CFLAGS) -o findglare findglare.o glareval.o glaresrc.o \
77 greg 2.46 setscan.o -lrtrad $(MLIB)
78 greg 1.7
79 greg 1.12 glarendx: glarendx.o
80 greg 2.46 $(CC) $(CFLAGS) -o glarendx glarendx.o -lrtrad $(MLIB)
81 greg 1.3
82 greg 1.12 xglaresrc: xglaresrc.o x11findwind.o
83 greg 2.3 $(CC) $(CFLAGS) -o xglaresrc xglaresrc.o \
84 greg 2.47 x11findwind.o -lrtrad -lX11 $(MLIB)
85 greg 1.4
86 greg 2.23 rad: rad.o
87 greg 2.46 $(CC) $(CFLAGS) -o rad rad.o -lrtrad $(MLIB)
88 greg 2.19
89 greg 2.23 ranimate: ranimate.o netproc.o
90 greg 2.46 $(CC) $(CFLAGS) -o ranimate ranimate.o netproc.o -lrtrad $(MLIB)
91 greg 2.6
92 greg 2.34 ranimove: ranimove.o ranimove1.o ranimove2.o
93 greg 2.31 $(CC) $(CFLAGS) -o ranimove ranimove.o ranimove1.o ranimove2.o \
94 greg 2.46 -lraycalls -lradiance -lrtrad $(MLIB)
95 greg 2.31
96 greg 2.48 rsensor: rsensor.o
97     $(CC) $(CFLAGS) -o rsensor rsensor.o \
98     -lraycalls -lradiance -lrtrad $(MLIB)
99    
100 greg 2.5 rpiece: rpiece.o Version.o
101 greg 2.46 $(CC) $(CFLAGS) -o rpiece rpiece.o Version.o -lrtrad $(MLIB)
102 greg 2.14
103     vwright: vwright.o
104 greg 2.46 $(CC) $(CFLAGS) -o vwright vwright.o -lrtrad $(MLIB)
105 gregl 2.24
106     vwrays: vwrays.o
107 greg 2.46 $(CC) $(CFLAGS) -o vwrays vwrays.o -lrtrad $(MLIB)
108 greg 2.22
109     getinfo: getinfo.o
110 schorsch 2.44 $(CC) $(CFLAGS) -o getinfo getinfo.o -lrtrad
111 greg 2.4
112 gwlarson 2.27 glrad: glrad.o
113 schorsch 2.44 $(CC) $(CFLAGS) -o glrad glrad.o -lrgl -lrtrad -lGLU -lGL \
114 greg 2.49 -lX11 -lXext $(MLIB)
115 gwlarson 2.27
116 greg 2.64 dctimestep: dctimestep.o cmbsdf.o cmatrix.o
117     $(CC) $(CFLAGS) -o dctimestep dctimestep.o cmbsdf.o cmatrix.o \
118     -lrtrad $(MLIB)
119 greg 2.53
120 greg 2.59 rttree_reduce: rttree_reduce.o
121 greg 2.60 $(CC) $(CFLAGS) -o rttree_reduce rttree_reduce.o -lrtrad $(MLIB)
122 greg 2.59
123 greg 2.62 rcollate: rcollate.o
124     $(CC) $(CFLAGS) -o rcollate rcollate.o -lrtrad
125    
126 greg 2.66 eplus_adduvf: eplus_adduvf.o eplus_idf.o
127 greg 2.69 $(CC) $(CFLAGS) -o eplus_adduvf eplus_adduvf.o eplus_idf.o \
128     -lrtrad $(MLIB)
129 greg 2.66
130 greg 2.75 rfluxmtx: rfluxmtx.o
131     $(CC) $(CFLAGS) -o rfluxmtx rfluxmtx.o -lrtrad $(MLIB)
132    
133 greg 2.74 rmtxop: rmtxop.o rmatrix.o cmatrix.o cmbsdf.o
134     $(CC) $(CFLAGS) -o rmtxop rmtxop.o rmatrix.o cmatrix.o cmbsdf.o \
135     -lrtrad $(MLIB)
136    
137 greg 2.79 wrapBSDF: wrapBSDF.o
138     $(CC) $(CFLAGS) -o wrapBSDF wrapBSDF.o -lrtrad $(MLIB)
139    
140 greg 2.81 evalglare: evalglare.o pictool.o
141     $(CC) $(CFLAGS) -o evalglare evalglare.o pictool.o -lreetz -lrtrad $(MLIB)
142    
143 greg 2.87 radcompare: radcompare.o
144     $(CC) $(CFLAGS) -o radcompare radcompare.o -lrtrad $(MLIB)
145    
146 greg 2.39 setscan.o: setscan.h
147 greg 1.3
148 greg 2.89 rcode_depth: rcode_depth.o depthcodec.o
149     $(CC) $(CFLAGS) -o rcode_depth rcode_depth.o depthcodec.o \
150     -lrtrad $(MLIB)
151    
152 greg 2.68 eplus_adduvf.o: ../common/triangulate.h ../common/rtprocess.h \
153     ../common/paths.h ../common/rtio.h ../common/random.h \
154     ../common/rtmath.h ../common/mat4.h ../common/fvect.h
155 greg 2.66
156     eplus_adduvf.o eplus_idf.o: eplus_idf.h \
157 greg 2.65 ../common/lookup.h
158    
159 greg 1.3 findglare.o glareval.o \
160 greg 2.35 glaresrc.o: glare.h ../common/standard.h \
161     ../common/rtmisc.h ../common/rtio.h \
162     ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
163 greg 2.50 ../common/rterror.h ../common/view.h ../common/color.h setscan.h
164 greg 1.10
165 greg 1.12 glaresrc.o: ../common/linregr.h
166 greg 1.3
167 greg 2.4 rpiece.o: ../common/color.h ../common/view.h ../common/resolu.h
168    
169 greg 2.53 dctimestep.o: ../common/standard.h \
170     ../common/rtmisc.h ../common/rtio.h \
171     ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
172 greg 2.64 ../common/rterror.h ../common/resolu.h
173    
174     dctimestep.o cmatrix.o cmbsdf.o: cmatrix.h ../common/color.h
175    
176     cmatrix.o cmbsdf.o: ../common/standard.h \
177     ../common/rtmisc.h ../common/rtio.h \
178     ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
179     ../common/rterror.h
180    
181     cmbsdf.o: ../common/paths.h ../common/bsdf.h ../common/bsdf_m.h
182    
183 greg 2.75 rfluxmtx.o: ../common/rtio.h ../common/random.h ../common/triangulate.h \
184     ../common/rtmath.h ../common/fvect.h ../common/mat4.h ../common/tiff.h \
185 greg 2.78 ../common/platform.h ../common/bsdf.h ../common/bsdf_m.h ../common/rtprocess.h
186 greg 2.75
187 greg 2.82 rmtxop.o dctimestep.o cmatrix.o: ../common/platform.h
188 greg 2.53
189 greg 2.70 rad.o ranimate.o rpiece.o xglaresrc.o: ../common/standard.h \
190 greg 2.35 ../common/rtmisc.h ../common/rtio.h \
191     ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
192 greg 2.50 ../common/rterror.h
193 greg 2.4
194     xglaresrc.o: ../common/view.h
195 greg 1.3
196 greg 1.18 glareval.o xglaresrc.o: ../common/resolu.h
197 greg 2.18
198 greg 2.57 glareval.o: ../common/platform.h ../common/rtprocess.h
199    
200 greg 2.23 rad.o ranimate.o: ../common/vars.h
201 greg 2.20
202 greg 2.43 ranimove1.o ranimove2.o vwrays.o: ../common/random.h
203 greg 2.31
204 greg 2.20 rad.o: ../common/paths.h
205    
206     ranimate.o netproc.o: netproc.h
207    
208 greg 2.88 ranimove1.o: ../common/otypes.h ../rt/otspecial.h ../rt/source.h
209 greg 2.31
210 greg 2.21 netproc.o: ../common/paths.h
211    
212 greg 2.31 rad.o ranimate.o ranimove.o: ../common/view.h ../common/resolu.h
213 gwlarson 2.27
214     glrad.o: ../common/radogl.h \
215 greg 2.35 ../common/standard.h ../common/rtmisc.h ../common/rtio.h \
216 greg 2.50 ../common/rtmath.h ../common/mat4.h ../common/fvect.h ../common/rterror.h \
217 gwlarson 2.27 ../common/color.h ../common/object.h ../common/otypes.h ../common/lookup.h
218    
219     glrad.o: glradicon.h ../common/view.h ../common/paths.h
220 greg 2.31
221     ranimove.o ranimove1.o ranimove2.o: ranimove.h \
222     ../common/vars.h ../common/view.h \
223 greg 2.35 ../rt/ray.h ../common/octree.h \
224     ../common/object.h ../common/color.h \
225     ../common/standard.h ../common/rtmisc.h ../common/rtio.h \
226     ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
227 greg 2.50 ../common/rterror.h
228 greg 2.31
229 greg 2.48 rsensor.o: ../rt/ray.h ../common/octree.h \
230     ../common/object.h ../common/color.h \
231     ../common/standard.h ../common/rtmisc.h ../common/rtio.h \
232     ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
233 greg 2.50 ../common/rterror.h
234 greg 2.48
235     rsensor.o: ../common/view.h ../common/resolu.h ../rt/source.h
236    
237 greg 2.87 radcompare.o rcollate.o: ../common/platform.h \
238     ../common/rtio.h ../common/resolu.h
239 greg 2.62
240 greg 2.31 Version.c: ../rt/Version.c
241     cp ../rt/Version.c .
242    
243     x11findwind.c: ../common/x11findwind.c
244     cp ../common/x11findwind.c .
245 greg 2.59
246     rttree_reduce.o: ../common/rtio.h ../common/rterror.h
247 greg 2.74
248     rmatrix.o: rmatrix.h cmatrix.h ../common/resolu.h
249    
250     rmtxop.o: rmatrix.h cmatrix.h ../common/rtio.h ../common/resolu.h
251 greg 2.79
252     wrapBSDF.o: ../common/rtio.h ../common/rtprocess.h ../common/ezxml.h \
253     ../common/bsdf.h ../common/bsdf_m.h ../common/fvect.h ../common/ccolor.h
254 greg 2.81
255     pictool.o evalglare.o: pictool.h ../common/g3vector.h ../common/g3affine.h \
256     ../common/g3flist.h ../common/fvect.h ../common/gbasic.h
257    
258     evalglare.o: ../common/rtio.h
259    
260 greg 2.87 radcompare.o: ../common/rtio.h ../common/color.h ../common/lookup.h
261    
262 greg 2.81 pictool.o: ../common/view.h ../common/color.h
263 greg 2.85
264 greg 2.86 getinfo.o: ../common/rtprocess.h ../common/platform.h ../common/resolu.h
265 greg 2.89
266     rcode_depth.o depthcodec.o: depthcodec.h \
267     ../common/view.h ../common/fvect.h ../common/resolu.h \
268     ../common/rtio.h
269    
270     rcode_depth.o: ../common/platform.h