ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/Rmakefile
Revision: 2.93
Committed: Tue Dec 3 01:11:43 2024 UTC (5 months ago) by greg
Branch: MAIN
CVS Tags: HEAD
Changes since 2.92: +2 -2 lines
Log Message:
fix: Added strnstr.c compatibility module for Windows and Linux

File Contents

# User Rev Content
1 greg 2.93 # RCSid: $Id: Rmakefile,v 2.92 2024/08/14 20:05:23 greg Exp $
2 greg 1.1 #
3     # Makefile for ray tracing library routines
4     #
5    
6 greg 1.17 OPT = -O
7 greg 1.19 MACH = -DBSD
8 greg 1.1 CFLAGS = $(MACH) $(OPT)
9 greg 2.5 CC = cc
10 greg 2.80 AR = ar
11 gwlarson 2.27 SPECIAL =
12 greg 1.1
13 greg 2.93 COMPAT = erf.o strcmp.o strnstr.o strlcpy.o
14 greg 1.16
15 greg 1.3 LIBDIR = /usr/local/lib/ray
16    
17 greg 2.35 RTOBJ = cone.o face.o free_os.o instance.o readobj.o readoct.o otypes.o \
18     objset.o octree.o readfargs.o modobject.o getlibpath.o \
19 greg 2.38 addobjnotify.o zeroes.o mesh.o readmesh.o tmesh.o sceneio.o
20 greg 1.1
21     PICOBJ = color.o header.o image.o lamps.o resolu.o rexpr.o spec_rgb.o \
22 greg 2.43 colrops.o font.o tonemap.o tmapcolrs.o tmapluv.o tmaptiff.o \
23 greg 2.81 tmap16bit.o bmpfile.o falsecolor.o depthcodec.o normcodec.o \
24 greg 2.89 idmap.o fltdepth.o jitteraperture.o
25 greg 1.1
26 greg 2.64 UTLOBJ = ezxml.o ccolor.o ccyrgb.o bsdf.o bsdf_m.o bsdf_t.o loadbsdf.o \
27 greg 2.91 disk2square.o hilbert.o interp2d.o triangulate.o data.o
28 greg 2.62
29 greg 2.12 STDOBJ = fgetline.o fropen.o linregr.o xf.o mat4.o invmat4.o fvect.o urand.o \
30 schorsch 2.41 urind.o calexpr.o caldefn.o calfunc.o calprnt.o biggerlib.o multisamp.o \
31 greg 2.47 unix_process.o process.o gethomedir.o getpath.o error.o savestr.o \
32 schorsch 2.46 savqstr.o badarg.o fgetword.o words.o expandarg.o wordfile.o fgetval.o \
33 greg 2.54 clip.o plocate.o eputs.o wputs.o quit.o lookup.o bmalloc.o \
34 greg 2.74 loadvars.o tcos.o fputword.o chanvalue.o dircode.o paths.o byteswap.o \
35 greg 2.92 cvtcmd.o dmessage.o
36 greg 1.1
37 greg 2.20 SYSOBJ = ealloc.o fdate.o portio.o myhostname.o $(COMPAT)
38 greg 1.1
39 greg 2.92 CPPOBJ = abitmap.o abitmapio.o
40    
41 greg 2.63 MGFOBJ = mgf_parser.o mgf_object.o mgf_xf.o mgf_context.o
42    
43 greg 2.86 WFOBJ = objutil.o objtriangulate.o readwfobj.o convertobj.o writewfobj.o
44 greg 2.83
45 greg 2.79 REETZOBJ = g3affine.o g3flist.o g3sphere.o g3vector.o gbasic.o muc_randvar.o
46 greg 2.73
47 gwlarson 2.27 OGLOBJ = rglfile.o rglmat.o rgldomat.o rglsurf.o rglinst.o rglsrc.o
48    
49 greg 2.37 LIBFILES = tmesh.cal
50    
51 greg 2.62 librtrad.a: $(RTOBJ) $(PICOBJ) $(UTLOBJ) $(STDOBJ) $(SYSOBJ)
52 schorsch 2.58 rm -f librtrad.a
53 greg 2.80 $(AR) rc librtrad.a $(RTOBJ) $(PICOBJ) $(UTLOBJ) $(STDOBJ) $(SYSOBJ)
54 schorsch 2.58 -ranlib librtrad.a
55 greg 1.16
56 greg 2.92 libcpprad.a: $(CPPOBJ)
57     rm -f libcpprad.a
58     $(AR) rc libcpprad.a $(CPPOBJ)
59    
60 greg 2.63 libmgf.a: $(MGFOBJ)
61     rm -f libmgf.a
62 greg 2.80 $(AR) rc libmgf.a $(MGFOBJ)
63 greg 2.63 -ranlib libmgf.a
64    
65 greg 2.83 libwfobj.a: $(WFOBJ)
66     rm -f libwfobj.a
67     $(AR) rc libwfobj.a $(WFOBJ)
68     -ranlib libwfobj.a
69    
70 greg 2.73 libreetz.a: $(REETZOBJ)
71     rm -f libreetz.a
72 greg 2.80 $(AR) rc libreetz.a $(REETZOBJ)
73 greg 2.73 -ranlib libreetz.a
74    
75 gwlarson 2.28 install: all
76 greg 2.92 mv -f librtrad.a libcpprad.a libmgf.a libwfobj.a libreetz.a ../lib
77 greg 2.45 cd $(LIBDIR) && rm -f $(LIBFILES)
78 greg 2.57 cp -f $(LIBFILES) $(LIBDIR)
79    
80 greg 2.92 all: librtrad.a libcpprad.a libmgf.a libwfobj.a libreetz.a $(SPECIAL)
81 greg 1.5
82     clean:
83 greg 2.85 rm -f *.o *.a
84 greg 1.3
85 gwlarson 2.27 ogl: $(OGLOBJ)
86 greg 2.57 rm -f librgl.a
87 greg 2.80 $(AR) rc librgl.a $(OGLOBJ)
88 gwlarson 2.27 -ranlib librgl.a
89 greg 2.57 mv -f librgl.a ../lib
90 gwlarson 2.28
91     x10:
92    
93     aed:
94    
95     sgi:
96    
97     sun:
98 gwlarson 2.27
99 greg 2.13 getlibpath.o: getlibpath.c
100     $(CC) $(CFLAGS) -DDEFPATH=\":$(LIBDIR)\" -c getlibpath.c
101 greg 1.4
102 gwlarson 2.32 tmapcolrs.o: tmapcolrs.c
103     $(CC) $(CFLAGS) -DPCOND=\"pcond\" -c tmapcolrs.c
104    
105 greg 2.75 testBSDF: testBSDF.c bsdf.h rtio.h
106     $(CC) -L../lib $(CFLAGS) -o testBSDF testBSDF.c -lrtrad -lm
107    
108 greg 2.90 color.o colrops.o header.o lamps.o spec_rgb.o: color.h
109 greg 1.1
110     cone.o: cone.h
111    
112     face.o: face.h
113    
114 greg 2.72 fvect.o: fvect.h random.h
115 greg 1.1
116     instance.o: instance.h
117    
118     linregr.o: linregr.h
119    
120 greg 2.12 mat4.o invmat4.o: mat4.h fvect.h
121 greg 1.1
122     cone.o face.o instance.o objset.o otypes.o \
123 greg 2.37 mesh.o modobject.o readfargs.o readmesh.o \
124 greg 2.38 readobj.o readoct.o sceneio.o: object.h
125 greg 1.1
126 greg 2.38 mesh.o objset.o octree.o readmesh.o readoct.o sceneio.o: octree.h
127 greg 1.1
128 greg 2.38 cone.o mesh.o modobject.o otypes.o \
129     readobj.o readoct.o sceneio.o: otypes.h
130 greg 1.1
131 gregl 2.26 multisamp.o urand.o: random.h
132 greg 1.1
133 greg 2.91 cone.o data.o face.o free_os.o instance.o objset.o \
134 greg 2.42 octree.o modobject.o readfargs.o otypes.o mesh.o \
135     readmesh.o readobj.o readoct.o sceneio.o: standard.h \
136 greg 2.60 rtmisc.h rtio.h rtmath.h rterror.h fvect.h mat4.h tiff.h
137 greg 1.1
138 greg 2.89 image.o: view.h rtio.h rtmath.h mat4.h fvect.h rtio.h paths.h
139    
140     jitteraperture.o: view.h rtmath.h mat4.h fvect.h rtio.h
141 greg 1.4
142 greg 2.39 caldefn.o calexpr.o calfunc.o calprnt.o: calcomp.h
143 greg 2.17
144     clip.o plocate.o: plocate.h
145 greg 2.4
146     font.o: font.h
147 greg 2.9
148 greg 2.88 cvtcmd.o font.o fropen.o getpath.o image.o: paths.h
149 greg 2.16
150 greg 2.38 lookup.o: lookup.h
151 greg 2.23
152     loadvars.o: vars.h
153 greg 2.24
154 greg 2.38 mesh.o readmesh.o: mesh.h lookup.h
155 greg 2.37
156 greg 2.92 dmessage.o abitmapio.o: dmessage.h
157    
158     abitmap.o abitmapio.o: abitmap.h tiff.h
159    
160     abitmapio.o: bmpfile.h
161    
162 greg 2.43 tonemap.o tmapcolrs.o tmapluv.o tmap16bit.o: tmprivat.h tonemap.h \
163 greg 2.60 tiff.h color.h
164 gwlarson 2.30
165 greg 2.55 tmapluv.o: tiffio.h tmaptiff.h tiff.h
166 greg 2.24
167 greg 2.60 falsecolor.o: falsecolor.h tmprivat.h tonemap.h color.h tiff.h
168 greg 2.56
169 greg 2.24 tonemap.o: tmerrmsg.h
170 gwlarson 2.27
171 greg 2.60 tmaptiff.o: tmprivat.h tmaptiff.h color.h tonemap.h tiff.h
172 greg 2.35
173 gwlarson 2.27 rglfile.o rglmat.o rgldomat.o rglsurf.o rglinst.o rglsrc.o: radogl.h \
174     standard.h mat4.h fvect.h color.h object.h otypes.h lookup.h
175 greg 2.35
176     free_os.o: octree.h object.h otypes.h face.h cone.h instance.h
177 greg 2.37
178     tmesh.o: tmesh.h fvect.h
179 greg 2.42
180 greg 2.88 fgetword.o fputword.o fgetval.o fgetline.o fdate.o font.o \
181     unix_process.o byteswap.o expandarg.o badarg.o xf.o: rtio.h
182 greg 2.42
183     expandarg.o: rtmisc.h
184    
185 greg 2.68 dircode.o interp2d.o xf.o: rtmath.h mat4.h fvect.h tiff.h
186 greg 2.42
187     error.o: rterror.h
188 greg 2.49
189 greg 2.60 bmpfile.o: bmpfile.h tiff.h
190 greg 2.61
191     header.o readmesh.o readoct.o resolu.o rglinst.o tmapcolrs.o: resolu.h
192    
193 greg 2.63 ezxml.o bsdf.o bsdf_m.o bsdf_t.o: ezxml.h
194    
195 greg 2.64 bsdf_m.o bsdf_t.o: rtio.h
196    
197 greg 2.67 bsdf.o: bsdf.h fvect.h bsdf_m.h bsdf_t.h hilbert.h ezxml.h
198 greg 2.63
199     bsdf.o bsdf_m.o bsdf_t.o ccolor.o: ccolor.h
200    
201     mgf_parser.o mgf_context.o mgf_xf.o mgf_object.o: mgf_parser.h ccolor.h
202    
203     ccyrgb.o: ccolor.h color.h
204    
205     mgf_parser.o mgf_context.o: lookup.h
206    
207     mgf_parser.o: mgf_mesg.h
208    
209     bsdf_m.o: bsdf.h bsdf_m.h
210 greg 2.62
211 greg 2.65 bsdf_t.o: bsdf.h bsdf_t.h hilbert.h
212 greg 2.62
213 greg 2.63 hilbert.o: hilbert.h
214 greg 2.64
215     loadbsdf.o: bsdf.h rtio.h rterror.h paths.h
216 greg 2.68
217     interp2d.o: interp2d.h
218 greg 2.70
219     triangulate.o: triangulate.h
220 greg 2.71
221     process.o readobj.o readoct.o rglfile.o \
222     tmapcolrs.o unix_process.o win_process.o: rtprocess.h
223 greg 2.73
224     gbasic.o: gbasic.h
225    
226     g3flist.o g3affine.o g3sphere.o g3vector.o: g3vector.h gbasic.h fvect.h
227    
228     g3affine.o: g3affine.h
229    
230     g3affine.o g3sphere.o: g3sphere.h
231    
232     g3flist.o: g3flist.h
233    
234     maxheap.o: maxheap.h
235 greg 2.77
236 greg 2.91 data.o: data.h platform.h paths.h color.h view.h resolu.h
237    
238 greg 2.77 ezxml.o readmesh.o readobj.o readoct.o rglinst.o wordfile.o: platform.h
239 greg 2.81
240     depthcodec.o: depthcodec.h view.h fvect.h resolu.h rtio.h
241    
242     normcodec.o: normcodec.h rtmath.h mat4.h fvect.h resolu.h rtio.h
243    
244     idmap.o: idmap.h resolu.h platform.h rtio.h
245    
246     rcode_ident.o: lookup.h
247 greg 2.83
248 greg 2.87 convertobj.o: paths.h rterror.h objutil.h
249    
250 greg 2.83 objutil.o: objutil.h rterror.h rtio.h rtmath.h mat4.h fvect.h lookup.h
251    
252 greg 2.86 objtriangulate.o: objutil.h rterror.h triangulate.h
253    
254 greg 2.83 readwfobj.o: objutil.h rtio.h rterror.h fvect.h
255    
256     writewfobj.o: objutil.h rterror.h