ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/Rmakefile
(Generate patch)

Comparing ray/src/util/Rmakefile (file contents):
Revision 2.66 by greg, Sun Feb 9 05:49:21 2014 UTC vs.
Revision 2.91 by greg, Fri Jul 19 22:25:03 2019 UTC

# Line 21 | Line 21 | LIBDIR = /usr/local/lib/ray
21  
22   PROGS = findglare glarendx rpiece rad ranimate ranimove vwright getinfo \
23                  vwrays xglaresrc rsensor dctimestep rttree_reduce rcollate \
24 <                eplus_adduvf
24 >                eplus_adduvf rfluxmtx rmtxop wrapBSDF evalglare radcompare \
25 >                rcode_depth rcode_norm rcode_ident
26  
27 + LIBFILES = rambpos.cal ambpos.cal tregsamp.dat reinhartb.cal \
28 + klems_full.cal klems_half.cal klems_quarter.cal disk2square.cal \
29 + minimalBSDFt.xml WINDOW6BSDFt.xml
30 +
31   all:    $(PROGS)
32  
33   install:        all $(SPECIAL) objview.pl objpict.pl glare.csh dayfact.csh \
34   rlux.csh raddepend.csh trad.wsh objline.csh compamb.csh vinfo.csh \
35 < genambpos.csh fieldcomb.csh genklemsamp.pl genskyvec.pl genBSDF.pl tregsamp.dat
35 > ltview.pl ltpict.pl genambpos.pl fieldcomb.csh genklemsamp.pl \
36 > genskyvec.pl genBSDF.pl bsdfview.pl rtpict.pl $(LIBFILES)
37          cp $(PROGS) $(INSTDIR)
38          cp objview.pl $(INSTDIR)/objview
39          cp objline.csh $(INSTDIR)/objline
# Line 39 | Line 45 | genambpos.csh fieldcomb.csh genklemsamp.pl genskyvec.p
45          cp raddepend.csh $(INSTDIR)/raddepend
46          cp compamb.csh $(INSTDIR)/compamb
47          cp vinfo.csh $(INSTDIR)/vinfo
48 <        cp genambpos.csh $(INSTDIR)/genambpos
48 >        cp genambpos.pl $(INSTDIR)/genambpos
49          cp fieldcomb.csh $(INSTDIR)/fieldcomb
50          cp genklemsamp.pl $(INSTDIR)/genklemsamp
51          cp genskyvec.pl $(INSTDIR)/genskyvec
52          cp genBSDF.pl $(INSTDIR)/genBSDF
53 +        cp bsdfview.pl $(INSTDIR)/bsdfview
54 +        cp ltview.pl $(INSTDIR)/ltview
55 +        cp ltpict.pl $(INSTDIR)/ltpict
56 +        cp rtpict.pl $(INSTDIR)/rtpict
57          cd $(INSTDIR) ; chmod 755 objview objpict \
58                  glare dayfact debugcal rlux raddepend objline \
59                  compamb vinfo genambpos fieldcomb genklemsamp \
60 <                genskyvec genBSDF
61 <        cp tregsamp.dat $(LIBDIR)
60 >                genskyvec genBSDF rtpict
61 >        cd $(LIBDIR) && rm -f $(LIBFILES)
62 >        cp $(LIBFILES) $(LIBDIR)
63          csh -f tradinstall.csh $(INSTDIR) $(LIBDIR)/tcl
64  
65   clean:
66 <        set nonomatch; rm -f *.o $(PROGS) glrad core Version.c x11findwind.c
66 >        set nonomatch; rm -f *.o $(PROGS) glrad Version.c x11findwind.c
67  
68   ogl:    glrad
69          cp glrad $(INSTDIR)
# Line 89 | Line 100 | rsensor:       rsensor.o
100   rpiece: rpiece.o Version.o
101          $(CC) $(CFLAGS) -o rpiece rpiece.o Version.o -lrtrad $(MLIB)
102  
92 rtcontrib:      rtcontrib.o Version.o
93        $(CC) $(CFLAGS) -o rtcontrib rtcontrib.o Version.o -lrtrad $(MLIB)
94
103   vwright:        vwright.o
104          $(CC) $(CFLAGS) -o vwright vwright.o -lrtrad $(MLIB)
105  
# Line 116 | Line 124 | rcollate:      rcollate.o
124          $(CC) $(CFLAGS) -o rcollate rcollate.o -lrtrad
125  
126   eplus_adduvf:   eplus_adduvf.o eplus_idf.o
127 <        $(CC) $(CFLAGS) -o eplus_adduvf eplus_adduvf.o eplus_idf.o -lrtrad
127 >        $(CC) $(CFLAGS) -o eplus_adduvf eplus_adduvf.o eplus_idf.o \
128 > -lrtrad $(MLIB)
129  
130 + rfluxmtx:       rfluxmtx.o
131 +        $(CC) $(CFLAGS) -o rfluxmtx rfluxmtx.o -lrtrad $(MLIB)
132 +
133 + 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 + wrapBSDF:       wrapBSDF.o
138 +        $(CC) $(CFLAGS) -o wrapBSDF wrapBSDF.o -lrtrad $(MLIB)
139 +
140 + evalglare:      evalglare.o pictool.o
141 +        $(CC) $(CFLAGS) -o evalglare evalglare.o pictool.o -lreetz -lrtrad $(MLIB)
142 +
143 + radcompare:     radcompare.o
144 +        $(CC) $(CFLAGS) -o radcompare radcompare.o -lrtrad $(MLIB)
145 +
146   setscan.o:      setscan.h
147  
148 < eplus_adduvf.o: ../common/triangulate.h
148 > rcode_depth:    rcode_depth.o depthcodec.o
149 >        $(CC) $(CFLAGS) -o rcode_depth rcode_depth.o depthcodec.o \
150 > -lrtrad $(MLIB)
151  
152 + rcode_norm:     rcode_norm.o normcodec.o
153 +        $(CC) $(CFLAGS) -o rcode_norm rcode_norm.o normcodec.o \
154 + -lrtrad $(MLIB)
155 +
156 + rcode_ident:    rcode_ident.o idmap.o
157 +        $(CC) $(CFLAGS) -o rcode_ident rcode_ident.o idmap.o -lrtrad
158 +
159 + eplus_adduvf.o: ../common/triangulate.h ../common/rtprocess.h \
160 + ../common/paths.h ../common/rtio.h ../common/random.h \
161 + ../common/rtmath.h ../common/mat4.h ../common/fvect.h
162 +
163   eplus_adduvf.o eplus_idf.o:     eplus_idf.h \
164   ../common/lookup.h
165  
# Line 149 | Line 187 | cmatrix.o cmbsdf.o:    ../common/standard.h \
187  
188   cmbsdf.o:       ../common/paths.h ../common/bsdf.h ../common/bsdf_m.h
189  
190 < dctimestep.o cmatrix.o: ../common/platform.h
190 > rfluxmtx.o:     ../common/rtio.h ../common/random.h ../common/triangulate.h \
191 > ../common/rtmath.h ../common/fvect.h ../common/mat4.h ../common/tiff.h \
192 > ../common/platform.h ../common/bsdf.h ../common/bsdf_m.h ../common/rtprocess.h
193  
194 < rtcontrib.o:    ../common/platform.h ../common/rtprocess.h \
155 < ../common/color.h ../common/resolu.h ../common/lookup.h \
156 < ../common/calcomp.h ../common/selcall.h
194 > rmtxop.o dctimestep.o cmatrix.o:        ../common/platform.h
195  
196 < rad.o ranimate.o rpiece.o rtcontrib.o xglaresrc.o:      ../common/standard.h \
196 > rad.o ranimate.o rpiece.o xglaresrc.o:  ../common/standard.h \
197   ../common/rtmisc.h ../common/rtio.h \
198   ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
199   ../common/rterror.h
# Line 174 | Line 212 | rad.o: ../common/paths.h
212  
213   ranimate.o netproc.o:   netproc.h
214  
215 < ranimove1.o:    ../common/otypes.h
215 > ranimove1.o:    ../common/otypes.h ../rt/otspecial.h ../rt/source.h
216  
217   netproc.o:      ../common/paths.h
218  
# Line 203 | Line 241 | rsensor.o:     ../rt/ray.h ../common/octree.h \
241  
242   rsensor.o:      ../common/view.h ../common/resolu.h ../rt/source.h
243  
244 < rcollate.o:     ../common/platform.h ../common/rtio.h ../common/resolu.h
244 > radcompare.o rcollate.o:        ../common/platform.h \
245 > ../common/rtio.h ../common/resolu.h
246  
247   Version.c:      ../rt/Version.c
248          cp ../rt/Version.c .
# Line 212 | Line 251 | x11findwind.c: ../common/x11findwind.c
251          cp ../common/x11findwind.c .
252  
253   rttree_reduce.o:        ../common/rtio.h ../common/rterror.h
254 +
255 + rmatrix.o:      rmatrix.h cmatrix.h ../common/resolu.h
256 +
257 + rmtxop.o:       rmatrix.h cmatrix.h ../common/rtio.h ../common/resolu.h
258 +
259 + wrapBSDF.o:     ../common/rtio.h ../common/rtprocess.h ../common/ezxml.h \
260 + ../common/bsdf.h ../common/bsdf_m.h ../common/fvect.h ../common/ccolor.h
261 +
262 + pictool.o evalglare.o:  pictool.h ../common/g3vector.h ../common/g3affine.h \
263 + ../common/g3flist.h ../common/fvect.h ../common/gbasic.h
264 +
265 + evalglare.o:    ../common/rtio.h
266 +
267 + radcompare.o:   ../common/rtio.h ../common/color.h ../common/lookup.h
268 +
269 + pictool.o:      ../common/view.h ../common/color.h
270 +
271 + getinfo.o:      ../common/rtprocess.h ../common/platform.h ../common/resolu.h
272 +
273 + rcode_depth.o depthcodec.o:     depthcodec.h \
274 + ../common/view.h ../common/fvect.h ../common/resolu.h ../common/rtio.h
275 +
276 + rcode_depth.o:  ../common/platform.h
277 +
278 + rcode_norm.o normcodec.o:       normcodec.h \
279 + ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
280 + ../common/resolu.h ../common/rtio.h
281 +
282 + rcode_norm.o:   ../common/platform.h
283 +
284 + rcode_ident.o idmap.o:  idmap.h ../common/resolu.h \
285 + ../common/platform.h ../common/rtio.h
286 +
287 + rcode_ident.o:  ../common/lookup.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines