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.1 by greg, Tue Nov 12 17:19:06 1991 UTC vs.
Revision 2.73 by greg, Sat Apr 26 15:59:38 2014 UTC

# Line 1 | Line 1
1 + # RCSid: $Id$
2   #
3 < # SCCSid "$SunId$ LBL"
3 > # Radiance makefile for utility programs
4   #
5  
6   MACH = -DBSD
7  
8   OPT = -O
9  
10 < CFLAGS = $(MACH) $(OPT) -I../common -L../lib
10 > CFLAGS = -I../common -I../rt -L../lib $(OPT) $(MACH)
11  
12 + MLIB = -lm
13 +
14 + CC = cc
15 +
16 + SPECIAL =
17 +
18   INSTDIR = /usr/local/bin
19  
20 < PROGS = findglare xglaresrc glarendx
20 > 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
25 +
26 + LIBFILES = rambpos.cal ambpos.cal tregsamp.dat
27 +
28   all:    $(PROGS)
29  
30 < install:        all objview.csh objpict.csh proj.csh glare.csh dayfact.csh
30 > install:        all $(SPECIAL) objview.pl objpict.pl glare.csh dayfact.csh \
31 > rlux.csh raddepend.csh trad.wsh objline.csh compamb.csh vinfo.csh \
32 > ltview.pl ltpict.pl genambpos.pl fieldcomb.csh genklemsamp.pl \
33 > genskyvec.pl genBSDF.pl $(LIBFILES)
34          cp $(PROGS) $(INSTDIR)
35 <        cp objview.csh $(INSTDIR)/objview
36 <        cp objpict.csh $(INSTDIR)/objpict
35 >        cp objview.pl $(INSTDIR)/objview
36 >        cp objline.csh $(INSTDIR)/objline
37 >        cp objpict.pl $(INSTDIR)/objpict
38          cp glare.csh $(INSTDIR)/glare
39          cp dayfact.csh $(INSTDIR)/dayfact
40          cp debugcal.csh $(INSTDIR)/debugcal
41 <        chmod 755 $(INSTDIR)/objview $(INSTDIR)/objpict \
42 <                $(INSTDIR)/glare $(INSTDIR)/dayfact $(INSTDIR)/debugcal
41 >        cp rlux.csh $(INSTDIR)/rlux
42 >        cp raddepend.csh $(INSTDIR)/raddepend
43 >        cp compamb.csh $(INSTDIR)/compamb
44 >        cp vinfo.csh $(INSTDIR)/vinfo
45 >        cp genambpos.pl $(INSTDIR)/genambpos
46 >        cp fieldcomb.csh $(INSTDIR)/fieldcomb
47 >        cp genklemsamp.pl $(INSTDIR)/genklemsamp
48 >        cp genskyvec.pl $(INSTDIR)/genskyvec
49 >        cp genBSDF.pl $(INSTDIR)/genBSDF
50 >        cp ltview.pl $(INSTDIR)/ltview
51 >        cp ltpict.pl $(INSTDIR)/ltpict
52 >        cd $(INSTDIR) ; chmod 755 objview objpict \
53 >                glare dayfact debugcal rlux raddepend objline \
54 >                compamb vinfo genambpos fieldcomb genklemsamp \
55 >                genskyvec genBSDF
56 >        cd $(LIBDIR) && rm -f $(LIBFILES)
57 >        cp $(LIBFILES) $(LIBDIR)
58 >        csh -f tradinstall.csh $(INSTDIR) $(LIBDIR)/tcl
59  
60   clean:
61 <        set nonomatch; rm -f *.o $(PROGS) core
61 >        set nonomatch; rm -f *.o $(PROGS) glrad Version.c x11findwind.c
62  
63 < scanner:        scanner.o
64 <        cc $(CFLAGS) -o scanner scanner.o -lm
63 > ogl:    glrad
64 >        cp glrad $(INSTDIR)
65  
66 < makedist:       makedist.o setscan.o
34 <        cc $(CFLAGS) -o makedist makedist.o setscan.o -lrt -lm
66 > sgi:
67  
68 + sun:
69 +
70   findglare:      findglare.o glareval.o glaresrc.o setscan.o
71 <        cc $(CFLAGS) -o findglare findglare.o glareval.o glaresrc.o \
72 < setscan.o -lrt -lm
71 >        $(CC) $(CFLAGS) -o findglare findglare.o glareval.o glaresrc.o \
72 > setscan.o -lrtrad $(MLIB)
73  
74   glarendx:       glarendx.o
75 <        cc $(CFLAGS) -o glarendx glarendx.o -lrt -lm
75 >        $(CC) $(CFLAGS) -o glarendx glarendx.o -lrtrad $(MLIB)
76  
77   xglaresrc:      xglaresrc.o x11findwind.o
78 <        cc $(CFLAGS) -o xglaresrc xglaresrc.o \
79 < x11findwind.o -lrt -lX11 -lm
78 >        $(CC) $(CFLAGS) -o xglaresrc xglaresrc.o \
79 > x11findwind.o -lrtrad -lX11 $(MLIB)
80  
81 < contour:        contour.o
82 <        cc $(CFLAGS) -o contour contour.o -lm
81 > rad:    rad.o
82 >        $(CC) $(CFLAGS) -o rad rad.o -lrtrad $(MLIB)
83  
84 < pranim: pranim.o client/libclient.a
85 <        cc $(CFLAGS) -o pranim pranim.o \
52 < client/libclient.a -lrpcsvc
84 > ranimate:       ranimate.o netproc.o
85 >        $(CC) $(CFLAGS) -o ranimate ranimate.o netproc.o -lrtrad $(MLIB)
86  
87 < t16anim:        t16anim.o client/libclient.a
88 <        cc $(CFLAGS) -o t16anim t16anim.o \
89 < client/libclient.a -lrpcsvc
87 > ranimove:       ranimove.o ranimove1.o ranimove2.o
88 >        $(CC) $(CFLAGS) -o ranimove ranimove.o ranimove1.o ranimove2.o \
89 > -lraycalls -lradiance -lrtrad $(MLIB)
90  
91 < t16anim.o pranim.o:     client/clnt.h
91 > rsensor:        rsensor.o
92 >        $(CC) $(CFLAGS) -o rsensor rsensor.o \
93 > -lraycalls -lradiance -lrtrad $(MLIB)
94  
95 < setscan.o makedist.o:   setscan.h
95 > rpiece: rpiece.o Version.o
96 >        $(CC) $(CFLAGS) -o rpiece rpiece.o Version.o -lrtrad $(MLIB)
97  
98 + vwright:        vwright.o
99 +        $(CC) $(CFLAGS) -o vwright vwright.o -lrtrad $(MLIB)
100 +
101 + vwrays:         vwrays.o
102 +        $(CC) $(CFLAGS) -o vwrays vwrays.o -lrtrad $(MLIB)
103 +
104 + getinfo:        getinfo.o
105 +        $(CC) $(CFLAGS) -o getinfo getinfo.o -lrtrad
106 +
107 + glrad:  glrad.o
108 +        $(CC) $(CFLAGS) -o glrad glrad.o -lrgl -lrtrad -lGLU -lGL \
109 + -lX11 -lXext $(MLIB)
110 +
111 + dctimestep:     dctimestep.o cmbsdf.o cmatrix.o
112 +        $(CC) $(CFLAGS) -o dctimestep dctimestep.o cmbsdf.o cmatrix.o \
113 + -lrtrad $(MLIB)
114 +
115 + rttree_reduce:  rttree_reduce.o
116 +        $(CC) $(CFLAGS) -o rttree_reduce rttree_reduce.o -lrtrad $(MLIB)
117 +
118 + rcollate:       rcollate.o
119 +        $(CC) $(CFLAGS) -o rcollate rcollate.o -lrtrad
120 +
121 + eplus_adduvf:   eplus_adduvf.o eplus_idf.o
122 +        $(CC) $(CFLAGS) -o eplus_adduvf eplus_adduvf.o eplus_idf.o \
123 + -lrtrad $(MLIB)
124 +
125 + setscan.o:      setscan.h
126 +
127 + eplus_adduvf.o: ../common/triangulate.h ../common/rtprocess.h \
128 + ../common/paths.h ../common/rtio.h ../common/random.h \
129 + ../common/rtmath.h ../common/mat4.h ../common/fvect.h
130 +
131 + eplus_adduvf.o eplus_idf.o:     eplus_idf.h \
132 + ../common/lookup.h
133 +
134   findglare.o glareval.o \
135 < glaresrc.o:     glare.h ../common/standard.h ../common/mat4.h \
136 < ../common/fvect.h ../common/view.h ../common/color.h setscan.h
135 > glaresrc.o:     glare.h ../common/standard.h \
136 > ../common/rtmisc.h ../common/rtio.h \
137 > ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
138 > ../common/rterror.h ../common/view.h ../common/color.h setscan.h
139  
140   glaresrc.o:     ../common/linregr.h
141  
142 < image.o xglaresrc.o:    ../common/standard.h ../common/mat4.h \
69 < ../common/fvect.h ../common/view.h
142 > rpiece.o:       ../common/color.h ../common/view.h ../common/resolu.h
143  
144 < swaprasheader.o:        ../common/rasterfile.h
144 > dctimestep.o:   ../common/standard.h \
145 > ../common/rtmisc.h ../common/rtio.h \
146 > ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
147 > ../common/rterror.h ../common/resolu.h
148  
149 + dctimestep.o cmatrix.o cmbsdf.o:        cmatrix.h ../common/color.h
150 +
151 + cmatrix.o cmbsdf.o:     ../common/standard.h \
152 + ../common/rtmisc.h ../common/rtio.h \
153 + ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
154 + ../common/rterror.h
155 +
156 + cmbsdf.o:       ../common/paths.h ../common/bsdf.h ../common/bsdf_m.h
157 +
158 + dctimestep.o cmatrix.o: ../common/platform.h
159 +
160 + rad.o ranimate.o rpiece.o xglaresrc.o:  ../common/standard.h \
161 + ../common/rtmisc.h ../common/rtio.h \
162 + ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
163 + ../common/rterror.h
164 +
165 + xglaresrc.o:    ../common/view.h
166 +
167   glareval.o xglaresrc.o: ../common/resolu.h
168 +
169 + glareval.o:     ../common/platform.h ../common/rtprocess.h
170 +
171 + rad.o ranimate.o:       ../common/vars.h
172 +
173 + ranimove1.o ranimove2.o vwrays.o:       ../common/random.h
174 +
175 + rad.o:  ../common/paths.h
176 +
177 + ranimate.o netproc.o:   netproc.h
178 +
179 + ranimove1.o:    ../common/otypes.h
180 +
181 + netproc.o:      ../common/paths.h
182 +
183 + rad.o ranimate.o ranimove.o:    ../common/view.h ../common/resolu.h
184 +
185 + glrad.o:        ../common/radogl.h \
186 + ../common/standard.h ../common/rtmisc.h ../common/rtio.h \
187 + ../common/rtmath.h ../common/mat4.h ../common/fvect.h ../common/rterror.h \
188 + ../common/color.h ../common/object.h ../common/otypes.h ../common/lookup.h
189 +
190 + glrad.o:        glradicon.h ../common/view.h ../common/paths.h
191 +
192 + ranimove.o ranimove1.o ranimove2.o:     ranimove.h \
193 + ../common/vars.h ../common/view.h \
194 + ../rt/ray.h ../common/octree.h \
195 + ../common/object.h ../common/color.h \
196 + ../common/standard.h ../common/rtmisc.h ../common/rtio.h \
197 + ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
198 + ../common/rterror.h
199 +
200 + rsensor.o:      ../rt/ray.h ../common/octree.h \
201 + ../common/object.h ../common/color.h \
202 + ../common/standard.h ../common/rtmisc.h ../common/rtio.h \
203 + ../common/rtmath.h ../common/mat4.h ../common/fvect.h \
204 + ../common/rterror.h
205 +
206 + rsensor.o:      ../common/view.h ../common/resolu.h ../rt/source.h
207 +
208 + rcollate.o:     ../common/platform.h ../common/rtio.h ../common/resolu.h
209 +
210 + Version.c:      ../rt/Version.c
211 +        cp ../rt/Version.c .
212 +
213 + x11findwind.c:  ../common/x11findwind.c
214 +        cp ../common/x11findwind.c .
215 +
216 + rttree_reduce.o:        ../common/rtio.h ../common/rterror.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines