ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/Rmakefile
Revision: 2.73
Committed: Wed Aug 12 23:07:59 2015 UTC (8 years, 9 months ago) by greg
Branch: MAIN
CVS Tags: rad5R0
Changes since 2.72: +22 -3 lines
Log Message:
Added Jan Wienold's evalglare to distribution

File Contents

# User Rev Content
1 greg 2.73 # RCSid: $Id: Rmakefile,v 2.72 2015/07/16 05:08:57 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 gwlarson 2.27 SPECIAL =
11 greg 1.1
12 greg 2.54 COMPAT = erf.o strcmp.o
13 greg 1.16
14 greg 1.3 LIBDIR = /usr/local/lib/ray
15    
16 greg 2.35 RTOBJ = cone.o face.o free_os.o instance.o readobj.o readoct.o otypes.o \
17     objset.o octree.o readfargs.o modobject.o getlibpath.o \
18 greg 2.38 addobjnotify.o zeroes.o mesh.o readmesh.o tmesh.o sceneio.o
19 greg 1.1
20     PICOBJ = color.o header.o image.o lamps.o resolu.o rexpr.o spec_rgb.o \
21 greg 2.43 colrops.o font.o tonemap.o tmapcolrs.o tmapluv.o tmaptiff.o \
22 greg 2.56 tmap16bit.o bmpfile.o falsecolor.o
23 greg 1.1
24 greg 2.64 UTLOBJ = ezxml.o ccolor.o ccyrgb.o bsdf.o bsdf_m.o bsdf_t.o loadbsdf.o \
25 greg 2.69 disk2square.o hilbert.o interp2d.o triangulate.o
26 greg 2.62
27 greg 2.12 STDOBJ = fgetline.o fropen.o linregr.o xf.o mat4.o invmat4.o fvect.o urand.o \
28 schorsch 2.41 urind.o calexpr.o caldefn.o calfunc.o calprnt.o biggerlib.o multisamp.o \
29 greg 2.47 unix_process.o process.o gethomedir.o getpath.o error.o savestr.o \
30 schorsch 2.46 savqstr.o badarg.o fgetword.o words.o expandarg.o wordfile.o fgetval.o \
31 greg 2.54 clip.o plocate.o eputs.o wputs.o quit.o lookup.o bmalloc.o \
32 greg 2.59 loadvars.o tcos.o fputword.o chanvalue.o dircode.o paths.o byteswap.o
33 greg 1.1
34 greg 2.20 SYSOBJ = ealloc.o fdate.o portio.o myhostname.o $(COMPAT)
35 greg 1.1
36 greg 2.63 MGFOBJ = mgf_parser.o mgf_object.o mgf_xf.o mgf_context.o
37    
38 greg 2.73 REETZOBJ = g3affine.o g3flist.o g3sphere.o g3vector.o gbasic.o maxheap.o
39    
40 gwlarson 2.27 OGLOBJ = rglfile.o rglmat.o rgldomat.o rglsurf.o rglinst.o rglsrc.o
41    
42 greg 2.37 LIBFILES = tmesh.cal
43    
44 greg 2.62 librtrad.a: $(RTOBJ) $(PICOBJ) $(UTLOBJ) $(STDOBJ) $(SYSOBJ)
45 schorsch 2.58 rm -f librtrad.a
46 greg 2.62 ar rc librtrad.a $(RTOBJ) $(PICOBJ) $(UTLOBJ) $(STDOBJ) $(SYSOBJ)
47 schorsch 2.58 -ranlib librtrad.a
48 greg 1.16
49 greg 2.63 libmgf.a: $(MGFOBJ)
50     rm -f libmgf.a
51     ar rc libmgf.a $(MGFOBJ)
52     -ranlib libmgf.a
53    
54 greg 2.73 libreetz.a: $(REETZOBJ)
55     rm -f libreetz.a
56     ar rc libreetz.a $(REETZOBJ)
57     -ranlib libreetz.a
58    
59 gwlarson 2.28 install: all
60 greg 2.73 mv -f librtrad.a libmgf.a libreetz.a ../lib
61 greg 2.45 cd $(LIBDIR) && rm -f $(LIBFILES)
62 greg 2.57 cp -f $(LIBFILES) $(LIBDIR)
63    
64 greg 2.73 all: librtrad.a libmgf.a libreetz.a $(SPECIAL)
65 greg 1.5
66     clean:
67 greg 2.63 rm -f *.o librtrad.a libmgf.a
68 greg 1.3
69 gwlarson 2.27 ogl: $(OGLOBJ)
70 greg 2.57 rm -f librgl.a
71 gwlarson 2.27 ar rc librgl.a $(OGLOBJ)
72     -ranlib librgl.a
73 greg 2.57 mv -f librgl.a ../lib
74 gwlarson 2.28
75     x10:
76    
77     aed:
78    
79     sgi:
80    
81     sun:
82 gwlarson 2.27
83 greg 2.13 getlibpath.o: getlibpath.c
84     $(CC) $(CFLAGS) -DDEFPATH=\":$(LIBDIR)\" -c getlibpath.c
85 greg 1.4
86 gwlarson 2.32 tmapcolrs.o: tmapcolrs.c
87     $(CC) $(CFLAGS) -DPCOND=\"pcond\" -c tmapcolrs.c
88    
89 greg 2.19 color.o colrops.o lamps.o spec_rgb.o: color.h
90 greg 1.1
91     cone.o: cone.h
92    
93     face.o: face.h
94    
95 greg 2.72 fvect.o: fvect.h random.h
96 greg 1.1
97     instance.o: instance.h
98    
99     linregr.o: linregr.h
100    
101 greg 2.12 mat4.o invmat4.o: mat4.h fvect.h
102 greg 1.1
103     cone.o face.o instance.o objset.o otypes.o \
104 greg 2.37 mesh.o modobject.o readfargs.o readmesh.o \
105 greg 2.38 readobj.o readoct.o sceneio.o: object.h
106 greg 1.1
107 greg 2.38 mesh.o objset.o octree.o readmesh.o readoct.o sceneio.o: octree.h
108 greg 1.1
109 greg 2.38 cone.o mesh.o modobject.o otypes.o \
110     readobj.o readoct.o sceneio.o: otypes.h
111 greg 1.1
112 gregl 2.26 multisamp.o urand.o: random.h
113 greg 1.1
114 greg 2.42 cone.o face.o free_os.o image.o instance.o objset.o \
115     octree.o modobject.o readfargs.o otypes.o mesh.o \
116     readmesh.o readobj.o readoct.o sceneio.o: standard.h \
117 greg 2.60 rtmisc.h rtio.h rtmath.h rterror.h fvect.h mat4.h tiff.h
118 greg 1.1
119     image.o: view.h
120 greg 1.4
121 greg 2.39 caldefn.o calexpr.o calfunc.o calprnt.o: calcomp.h
122 greg 2.17
123     clip.o plocate.o: plocate.h
124 greg 2.4
125     font.o: font.h
126 greg 2.9
127     fropen.o getpath.o image.o: paths.h
128 greg 2.16
129 greg 2.38 lookup.o: lookup.h
130 greg 2.23
131     loadvars.o: vars.h
132 greg 2.24
133 greg 2.38 mesh.o readmesh.o: mesh.h lookup.h
134 greg 2.37
135 greg 2.43 tonemap.o tmapcolrs.o tmapluv.o tmap16bit.o: tmprivat.h tonemap.h \
136 greg 2.60 tiff.h color.h
137 gwlarson 2.30
138 greg 2.55 tmapluv.o: tiffio.h tmaptiff.h tiff.h
139 greg 2.24
140 greg 2.60 falsecolor.o: falsecolor.h tmprivat.h tonemap.h color.h tiff.h
141 greg 2.56
142 greg 2.24 tonemap.o: tmerrmsg.h
143 gwlarson 2.27
144 greg 2.60 tmaptiff.o: tmprivat.h tmaptiff.h color.h tonemap.h tiff.h
145 greg 2.35
146 gwlarson 2.27 rglfile.o rglmat.o rgldomat.o rglsurf.o rglinst.o rglsrc.o: radogl.h \
147     standard.h mat4.h fvect.h color.h object.h otypes.h lookup.h
148 greg 2.35
149     free_os.o: octree.h object.h otypes.h face.h cone.h instance.h
150 greg 2.37
151     tmesh.o: tmesh.h fvect.h
152 greg 2.42
153 greg 2.53 fgetword.o fputword.o fgetval.o fgetline.o fdate.o unix_process.o \
154 greg 2.59 byteswap.o expandarg.o badarg.o xf.o: rtio.h
155 greg 2.42
156     expandarg.o: rtmisc.h
157    
158 greg 2.68 dircode.o interp2d.o xf.o: rtmath.h mat4.h fvect.h tiff.h
159 greg 2.42
160     error.o: rterror.h
161 greg 2.49
162 greg 2.60 bmpfile.o: bmpfile.h tiff.h
163 greg 2.61
164     header.o readmesh.o readoct.o resolu.o rglinst.o tmapcolrs.o: resolu.h
165    
166 greg 2.63 ezxml.o bsdf.o bsdf_m.o bsdf_t.o: ezxml.h
167    
168 greg 2.64 bsdf_m.o bsdf_t.o: rtio.h
169    
170 greg 2.67 bsdf.o: bsdf.h fvect.h bsdf_m.h bsdf_t.h hilbert.h ezxml.h
171 greg 2.63
172     bsdf.o bsdf_m.o bsdf_t.o ccolor.o: ccolor.h
173    
174     mgf_parser.o mgf_context.o mgf_xf.o mgf_object.o: mgf_parser.h ccolor.h
175    
176     ccyrgb.o: ccolor.h color.h
177    
178     mgf_parser.o mgf_context.o: lookup.h
179    
180     mgf_parser.o: mgf_mesg.h
181    
182     bsdf_m.o: bsdf.h bsdf_m.h
183 greg 2.62
184 greg 2.65 bsdf_t.o: bsdf.h bsdf_t.h hilbert.h
185 greg 2.62
186 greg 2.63 hilbert.o: hilbert.h
187 greg 2.64
188     loadbsdf.o: bsdf.h rtio.h rterror.h paths.h
189 greg 2.68
190     interp2d.o: interp2d.h
191 greg 2.70
192     triangulate.o: triangulate.h
193 greg 2.71
194     process.o readobj.o readoct.o rglfile.o \
195     tmapcolrs.o unix_process.o win_process.o: rtprocess.h
196 greg 2.73
197     gbasic.o: gbasic.h
198    
199     g3flist.o g3affine.o g3sphere.o g3vector.o: g3vector.h gbasic.h fvect.h
200    
201     g3affine.o: g3affine.h
202    
203     g3affine.o g3sphere.o: g3sphere.h
204    
205     g3flist.o: g3flist.h
206    
207     maxheap.o: maxheap.h