7 |
|
MACH = -DBSD |
8 |
|
CFLAGS = $(MACH) $(OPT) |
9 |
|
CC = cc |
10 |
+ |
AR = ar |
11 |
|
SPECIAL = |
12 |
|
|
13 |
< |
COMPAT = erf.o strcmp.o |
13 |
> |
COMPAT = erf.o strcmp.o strlcpy.o |
14 |
|
|
15 |
|
LIBDIR = /usr/local/lib/ray |
16 |
|
|
20 |
|
|
21 |
|
PICOBJ = color.o header.o image.o lamps.o resolu.o rexpr.o spec_rgb.o \ |
22 |
|
colrops.o font.o tonemap.o tmapcolrs.o tmapluv.o tmaptiff.o \ |
23 |
< |
tmap16bit.o bmpfile.o falsecolor.o |
23 |
> |
tmap16bit.o bmpfile.o falsecolor.o depthcodec.o normcodec.o \ |
24 |
> |
idmap.o fltdepth.o |
25 |
|
|
26 |
|
UTLOBJ = ezxml.o ccolor.o ccyrgb.o bsdf.o bsdf_m.o bsdf_t.o loadbsdf.o \ |
27 |
< |
disk2square.o hilbert.o |
27 |
> |
disk2square.o hilbert.o interp2d.o triangulate.o |
28 |
|
|
29 |
|
STDOBJ = fgetline.o fropen.o linregr.o xf.o mat4.o invmat4.o fvect.o urand.o \ |
30 |
|
urind.o calexpr.o caldefn.o calfunc.o calprnt.o biggerlib.o multisamp.o \ |
31 |
|
unix_process.o process.o gethomedir.o getpath.o error.o savestr.o \ |
32 |
|
savqstr.o badarg.o fgetword.o words.o expandarg.o wordfile.o fgetval.o \ |
33 |
|
clip.o plocate.o eputs.o wputs.o quit.o lookup.o bmalloc.o \ |
34 |
< |
loadvars.o tcos.o fputword.o chanvalue.o dircode.o paths.o byteswap.o |
34 |
> |
loadvars.o tcos.o fputword.o chanvalue.o dircode.o paths.o byteswap.o \ |
35 |
> |
cvtcmd.o |
36 |
|
|
37 |
|
SYSOBJ = ealloc.o fdate.o portio.o myhostname.o $(COMPAT) |
38 |
|
|
39 |
|
MGFOBJ = mgf_parser.o mgf_object.o mgf_xf.o mgf_context.o |
40 |
|
|
41 |
+ |
WFOBJ = objutil.o objtriangulate.o readwfobj.o convertobj.o writewfobj.o |
42 |
+ |
|
43 |
+ |
REETZOBJ = g3affine.o g3flist.o g3sphere.o g3vector.o gbasic.o muc_randvar.o |
44 |
+ |
|
45 |
|
OGLOBJ = rglfile.o rglmat.o rgldomat.o rglsurf.o rglinst.o rglsrc.o |
46 |
|
|
47 |
|
LIBFILES = tmesh.cal |
48 |
|
|
49 |
|
librtrad.a: $(RTOBJ) $(PICOBJ) $(UTLOBJ) $(STDOBJ) $(SYSOBJ) |
50 |
|
rm -f librtrad.a |
51 |
< |
ar rc librtrad.a $(RTOBJ) $(PICOBJ) $(UTLOBJ) $(STDOBJ) $(SYSOBJ) |
51 |
> |
$(AR) rc librtrad.a $(RTOBJ) $(PICOBJ) $(UTLOBJ) $(STDOBJ) $(SYSOBJ) |
52 |
|
-ranlib librtrad.a |
53 |
|
|
54 |
|
libmgf.a: $(MGFOBJ) |
55 |
|
rm -f libmgf.a |
56 |
< |
ar rc libmgf.a $(MGFOBJ) |
56 |
> |
$(AR) rc libmgf.a $(MGFOBJ) |
57 |
|
-ranlib libmgf.a |
58 |
|
|
59 |
+ |
libwfobj.a: $(WFOBJ) |
60 |
+ |
rm -f libwfobj.a |
61 |
+ |
$(AR) rc libwfobj.a $(WFOBJ) |
62 |
+ |
-ranlib libwfobj.a |
63 |
+ |
|
64 |
+ |
libreetz.a: $(REETZOBJ) |
65 |
+ |
rm -f libreetz.a |
66 |
+ |
$(AR) rc libreetz.a $(REETZOBJ) |
67 |
+ |
-ranlib libreetz.a |
68 |
+ |
|
69 |
|
install: all |
70 |
< |
mv -f librtrad.a libmgf.a ../lib |
70 |
> |
mv -f librtrad.a libmgf.a libwfobj.a libreetz.a ../lib |
71 |
|
cd $(LIBDIR) && rm -f $(LIBFILES) |
72 |
|
cp -f $(LIBFILES) $(LIBDIR) |
73 |
|
|
74 |
< |
all: librtrad.a libmgf.a $(SPECIAL) |
74 |
> |
all: librtrad.a libmgf.a libwfobj.a libreetz.a $(SPECIAL) |
75 |
|
|
76 |
|
clean: |
77 |
< |
rm -f *.o librtrad.a libmgf.a |
77 |
> |
rm -f *.o *.a |
78 |
|
|
79 |
|
ogl: $(OGLOBJ) |
80 |
|
rm -f librgl.a |
81 |
< |
ar rc librgl.a $(OGLOBJ) |
81 |
> |
$(AR) rc librgl.a $(OGLOBJ) |
82 |
|
-ranlib librgl.a |
83 |
|
mv -f librgl.a ../lib |
84 |
|
|
96 |
|
tmapcolrs.o: tmapcolrs.c |
97 |
|
$(CC) $(CFLAGS) -DPCOND=\"pcond\" -c tmapcolrs.c |
98 |
|
|
99 |
+ |
testBSDF: testBSDF.c bsdf.h rtio.h |
100 |
+ |
$(CC) -L../lib $(CFLAGS) -o testBSDF testBSDF.c -lrtrad -lm |
101 |
+ |
|
102 |
|
color.o colrops.o lamps.o spec_rgb.o: color.h |
103 |
|
|
104 |
|
cone.o: cone.h |
105 |
|
|
106 |
|
face.o: face.h |
107 |
|
|
108 |
< |
fvect.o: fvect.h |
108 |
> |
fvect.o: fvect.h random.h |
109 |
|
|
110 |
|
instance.o: instance.h |
111 |
|
|
137 |
|
|
138 |
|
font.o: font.h |
139 |
|
|
140 |
< |
fropen.o getpath.o image.o: paths.h |
140 |
> |
cvtcmd.o fropen.o getpath.o image.o: paths.h |
141 |
|
|
142 |
|
lookup.o: lookup.h |
143 |
|
|
168 |
|
|
169 |
|
expandarg.o: rtmisc.h |
170 |
|
|
171 |
< |
dircode.o xf.o: rtmath.h mat4.h fvect.h tiff.h |
171 |
> |
dircode.o interp2d.o xf.o: rtmath.h mat4.h fvect.h tiff.h |
172 |
|
|
173 |
|
error.o: rterror.h |
174 |
|
|
199 |
|
hilbert.o: hilbert.h |
200 |
|
|
201 |
|
loadbsdf.o: bsdf.h rtio.h rterror.h paths.h |
202 |
+ |
|
203 |
+ |
interp2d.o: interp2d.h |
204 |
+ |
|
205 |
+ |
triangulate.o: triangulate.h |
206 |
+ |
|
207 |
+ |
process.o readobj.o readoct.o rglfile.o \ |
208 |
+ |
tmapcolrs.o unix_process.o win_process.o: rtprocess.h |
209 |
+ |
|
210 |
+ |
gbasic.o: gbasic.h |
211 |
+ |
|
212 |
+ |
g3flist.o g3affine.o g3sphere.o g3vector.o: g3vector.h gbasic.h fvect.h |
213 |
+ |
|
214 |
+ |
g3affine.o: g3affine.h |
215 |
+ |
|
216 |
+ |
g3affine.o g3sphere.o: g3sphere.h |
217 |
+ |
|
218 |
+ |
g3flist.o: g3flist.h |
219 |
+ |
|
220 |
+ |
maxheap.o: maxheap.h |
221 |
+ |
|
222 |
+ |
ezxml.o readmesh.o readobj.o readoct.o rglinst.o wordfile.o: platform.h |
223 |
+ |
|
224 |
+ |
depthcodec.o: depthcodec.h view.h fvect.h resolu.h rtio.h |
225 |
+ |
|
226 |
+ |
normcodec.o: normcodec.h rtmath.h mat4.h fvect.h resolu.h rtio.h |
227 |
+ |
|
228 |
+ |
idmap.o: idmap.h resolu.h platform.h rtio.h |
229 |
+ |
|
230 |
+ |
rcode_ident.o: lookup.h |
231 |
+ |
|
232 |
+ |
objutil.o: objutil.h rterror.h rtio.h rtmath.h mat4.h fvect.h lookup.h |
233 |
+ |
|
234 |
+ |
objtriangulate.o: objutil.h rterror.h triangulate.h |
235 |
+ |
|
236 |
+ |
readwfobj.o: objutil.h rtio.h rterror.h fvect.h |
237 |
+ |
|
238 |
+ |
writewfobj.o: objutil.h rterror.h |