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

Comparing ray/src/px/Rmakefile (file contents):
Revision 1.50 by greg, Wed Oct 23 09:33:13 1991 UTC vs.
Revision 2.36 by gregl, Fri Aug 29 15:35:28 1997 UTC

# Line 1 | Line 1
1 + # Compiles for image processing and display programs
2 + # SCCSid "$SunId$ SGI"
3   #
2 # SCCSid "$SunId$ LBL"
3 #  Compiles for image processing and display programs
4 #
4  
5   ARCH = sun
6   OPT = -O
7 < MACH = -DSTRUCTASSIGN -DBSD
7 > MACH = -DBSD
8 > SPECIAL = aed
9   CFLAGS = $(OPT) $(MACH) -I../common -L../lib
10 + CC = cc
11 + MLIB = -lm
12  
13   INSTDIR = /usr/local/bin
14  
15   LIBDIR = /usr/local/lib/ray
16  
17   PIXAR_INCLUDE=  -I/usr/pixar/include
18 < PIXAR_LIB=      -L/usr/pixar/host/lib -lpirl -lpicio -lchad -lpixar -lm
18 > PIXAR_LIB=      -L/usr/pixar/host/lib -lpirl -lpicio -lchad -lpixar $(MLIB)
19  
20 < PROGS = pfilt ttyimage oki20c paintjet mt160r getinfo psign \
21 < greyscale pvalue pcompos colorscale prot ra_pr ra_pr24 \
20 > PROGS = pfilt ttyimage oki20c oki20 paintjet mt160r psign \
21 > pvalue pcompos protate ra_pr ra_pr24 ra_avs \
22   ra_t8 ra_bn ra_t16 pcomb pinterp ximage xshowtrace pflip ra_ppm \
23 < ra_rgbe ra_pict
23 > ra_rgbe ra_pict ra_ps pextrem ra_gif ra_xyze macbethcal pcond pcwarp
24  
25 < all:    $(PROGS)
25 > all:    $(PROGS) $(SPECIAL)
26  
27   x10:    x10image
28          cp x10image $(INSTDIR)
# Line 28 | Line 30 | x10:   x10image
30   aed:    aedimage
31          cp aedimage $(INSTDIR)
32  
33 < tiff:   ra_tiff
34 <        cp ra_tiff $(INSTDIR)
33 > sgi:    glimage
34 >        cp glimage $(INSTDIR)
35  
36   sun:
37  
38 < install:        $(PROGS) normpat.csh falsecolor.csh
38 > install:        $(PROGS) $(SPECIAL) normpat.csh falsecolor.csh \
39 > pdfblur.csh pmblur.csh xyzimage.csh
40          cp $(PROGS) $(INSTDIR)
41          cp normpat.csh $(INSTDIR)/normpat
42          cp falsecolor.csh $(INSTDIR)/falsecolor
43 <        chmod 755 $(INSTDIR)/normpat $(INSTDIR)/falsecolor
43 >        cp pdfblur.csh $(INSTDIR)/pdfblur
44 >        cp pmblur.csh $(INSTDIR)/pmblur
45 >        cp xyzimage.csh $(INSTDIR)/xyzimage
46 >        chmod 755 $(INSTDIR)/normpat $(INSTDIR)/falsecolor \
47 > $(INSTDIR)/pdfblur $(INSTDIR)/pmblur $(INSTDIR)/xyzimage
48  
49   clean:
50 <        set nonomatch; rm -f $(PROGS) *.o core
50 >        set nonomatch; rm -f x10image aedimage glimage ra_tiff \
51 > $(PROGS) *.o core
52  
53   pfilt:  pfilt.o pf2.o pf3.o
54 <        cc $(CFLAGS) -o pfilt pfilt.o pf2.o pf3.o -lrt -lm
54 >        $(CC) $(CFLAGS) -o pfilt pfilt.o pf2.o pf3.o -lrt $(MLIB)
55  
56 + pcond:  pcond.o pcond2.o pcond3.o pcond4.o warp3d.o
57 +        $(CC) $(CFLAGS) -o pcond pcond.o pcond2.o pcond3.o pcond4.o warp3d.o \
58 + -lrt $(MLIB)
59 +
60 + pcwarp: pcwarp.o warp3d.o
61 +        $(CC) $(CFLAGS) -o pcwarp pcwarp.o warp3d.o -lrt $(MLIB)
62 +
63   ttyimage:       ttyimage.o
64 <        cc $(CFLAGS) -o ttyimage ttyimage.o -lrt -lm
64 >        $(CC) $(CFLAGS) -o ttyimage ttyimage.o -lrt $(MLIB)
65  
66   t4027:  t4027.o
67 <        cc $(CFLAGS) -o t4027 t4027.o -lrt
67 >        $(CC) $(CFLAGS) -o t4027 t4027.o -lrt
68  
69   glimage:        glimage.o
70 <        cc $(CFLAGS) -o glimage glimage.o -lrt -lgl_s -lm
70 >        $(CC) $(CFLAGS) -o glimage glimage.o -lrt -lgl_s $(MLIB)
71  
72   aedimage:       aedimage.o ciq.o cut.o closest.o biq.o
73 <        cc $(CFLAGS) -o aedimage aedimage.o ciq.o cut.o closest.o \
74 < biq.o -lrt -lm
73 >        $(CC) $(CFLAGS) -o aedimage aedimage.o ciq.o cut.o closest.o \
74 > biq.o -lrt $(MLIB)
75  
76   oki20c: oki20c.o
77 <        cc $(CFLAGS) -o oki20c oki20c.o -lrt -lm
77 >        $(CC) $(CFLAGS) -o oki20c oki20c.o -lrt $(MLIB)
78  
79 + oki20:  oki20.o
80 +        $(CC) $(CFLAGS) -o oki20 oki20.o -lrt $(MLIB)
81 +
82   paintjet:       paintjet.o
83 <        cc $(CFLAGS) -o paintjet paintjet.o -lrt -lm
83 >        $(CC) $(CFLAGS) -o paintjet paintjet.o -lrt $(MLIB)
84  
85   mt160r: mt160r.o
86 <        cc $(CFLAGS) -o mt160r mt160r.o -lrt -lm
86 >        $(CC) $(CFLAGS) -o mt160r mt160r.o -lrt $(MLIB)
87  
70 getinfo:        getinfo.o
71        cc $(CFLAGS) -n -o getinfo getinfo.o -lrt
72
88   greyscale:      greyscale.o
89 <        cc $(CFLAGS) -o greyscale greyscale.o -lrt -lm
89 >        $(CC) $(CFLAGS) -o greyscale greyscale.o -lrt $(MLIB)
90  
91   colorscale:     colorscale.o
92 <        cc $(CFLAGS) -o colorscale colorscale.o -lrt
92 >        $(CC) $(CFLAGS) -o colorscale colorscale.o -lrt -lm
93  
94   pvalue: pvalue.o
95 <        cc $(CFLAGS) -o pvalue pvalue.o -lrt -lm
95 >        $(CC) $(CFLAGS) -o pvalue pvalue.o -lrt $(MLIB)
96  
97   psum:   psum.o
98 <        cc $(CFLAGS) -o psum psum.o -lrt
98 >        $(CC) $(CFLAGS) -o psum psum.o -lrt
99  
100   pcompos:        pcompos.o
101 <        cc $(CFLAGS) -o pcompos pcompos.o -lrt
101 >        $(CC) $(CFLAGS) -o pcompos pcompos.o -lrt
102  
103   psign:  psign.o
104 <        cc $(CFLAGS) -o psign psign.o -lrt
104 >        $(CC) $(CFLAGS) -o psign psign.o -lrt -lm
105  
106   d48c:   d48c.o
107 <        cc $(CFLAGS) -o d48c d48c.o -lrt
107 >        $(CC) $(CFLAGS) -o d48c d48c.o -lrt
108  
109 + ra_gif: ra_gif.o clrtab.o neuclrtab.o
110 +        $(CC) $(CFLAGS) -o ra_gif ra_gif.o clrtab.o neuclrtab.o -lrt $(MLIB)
111 +
112   ra_pr:  ra_pr.o ciq.o cut.o closest.o biq.o
113 <        cc $(CFLAGS) -o ra_pr ra_pr.o ciq.o cut.o closest.o \
114 < biq.o -lrt -lm
113 >        $(CC) $(CFLAGS) -o ra_pr ra_pr.o ciq.o cut.o closest.o \
114 > biq.o -lrt $(MLIB)
115  
116   ra_pr24:        ra_pr24.o
117 <        cc $(CFLAGS) -o ra_pr24 ra_pr24.o -lrt -lm
117 >        $(CC) $(CFLAGS) -o ra_pr24 ra_pr24.o -lrt $(MLIB)
118  
119 + ra_avs: ra_avs.o
120 +        $(CC) $(CFLAGS) -o ra_avs ra_avs.o -lrt $(MLIB)
121 +
122 + ra_ps:  ra_ps.o
123 +        $(CC) $(CFLAGS) -o ra_ps ra_ps.o -lrt $(MLIB)
124 +
125   ra_ppm:         ra_ppm.o
126 <        cc $(CFLAGS) -o ra_ppm ra_ppm.o -lrt -lm
126 >        $(CC) $(CFLAGS) -o ra_ppm ra_ppm.o -lrt $(MLIB)
127  
128 < ra_t8:  ra_t8.o ciq.o cut.o closest.o biq.o
129 <        cc $(CFLAGS) -o ra_t8 ra_t8.o ciq.o cut.o closest.o \
106 < biq.o -lrt -lm
128 > ra_t8:  ra_t8.o clrtab.o neuclrtab.o
129 >        $(CC) $(CFLAGS) -o ra_t8 ra_t8.o clrtab.o neuclrtab.o -lrt $(MLIB)
130  
131   ra_t16: ra_t16.o
132 <        cc $(CFLAGS) -o ra_t16 ra_t16.o -lrt -lm
132 >        $(CC) $(CFLAGS) -o ra_t16 ra_t16.o -lrt $(MLIB)
133  
134   ra_im: ra_im.o
135 <        cc $(CFLAGS) -n -o ra_im ra_im.o
135 >        $(CC) $(CFLAGS) -o ra_im ra_im.o
136  
137   ra_bn: ra_bn.o
138 <        cc $(CFLAGS) -o ra_bn ra_bn.o -lrt -lm
138 >        $(CC) $(CFLAGS) -o ra_bn ra_bn.o -lrt $(MLIB)
139  
140   ra_rgbe:        ra_rgbe.o
141 <        cc $(CFLAGS) -o ra_rgbe ra_rgbe.o -lrt -lm
141 >        $(CC) $(CFLAGS) -o ra_rgbe ra_rgbe.o -lrt $(MLIB)
142  
143   ra_pict:    ra_pict.o
144 <        cc $(CFLAGS) -o ra_pict ra_pict.o -lrt -lm
144 >        $(CC) $(CFLAGS) -o ra_pict ra_pict.o -lrt $(MLIB)
145  
146  
147   x10image:       ximage.o ciq.o cut.o closest.o xraster.o biq.o
148 <        cc $(CFLAGS) -o x10image ximage.o xraster.o \
149 < ciq.o cut.o closest.o biq.o -lX -lrt -lm
148 >        $(CC) $(CFLAGS) -o x10image ximage.o xraster.o \
149 > ciq.o cut.o closest.o biq.o -lX -lrt $(MLIB)
150  
151 < ximage: x11image.o ciq.o cut.o closest.o x11raster.o biq.o
152 <        cc $(CFLAGS) -o ximage x11image.o x11raster.o \
153 < ciq.o cut.o closest.o biq.o -lX11 -lrt -lm
151 > ximage: x11image.o x11raster.o clrtab.o
152 >        $(CC) $(CFLAGS) -o ximage x11image.o x11raster.o \
153 > clrtab.o -lX11 -lrt $(MLIB)
154  
155 < prot:           prot.o
156 <        cc $(CFLAGS) -o prot prot.o -lrt
155 > protate:                protate.o
156 >        $(CC) $(CFLAGS) -o protate protate.o -lrt -lm
157  
158 + pextrem:        pextrem.o
159 +        $(CC) $(CFLAGS) -o pextrem pextrem.o -lrt -lm
160 +
161   pflip:          pflip.o
162 <        cc $(CFLAGS) -o pflip pflip.o -lrt
162 >        $(CC) $(CFLAGS) -o pflip pflip.o -lrt -lm
163  
164   panim:  panim.o client/libclient.a
165 <        cc $(CFLAGS) -o panim panim.o \
166 < -lrt client/libclient.a -lrpcsvc -lm
165 >        $(CC) $(CFLAGS) -o panim panim.o \
166 > -lrt client/libclient.a -lrpcsvc $(MLIB)
167  
168   pcomb:  pcomb.o
169 <        cc $(CFLAGS) -o pcomb pcomb.o -lrt -lm
169 >        $(CC) $(CFLAGS) -o pcomb pcomb.o -lrt $(MLIB)
170  
171   pinterp:        pinterp.o
172 <        cc $(CFLAGS) -o pinterp pinterp.o -lrt -lm
172 >        $(CC) $(CFLAGS) -o pinterp pinterp.o -lrt $(MLIB)
173  
174 + ra_xyze:        ra_xyze.o
175 +        $(CC) $(CFLAGS) -o ra_xyze ra_xyze.o -lrt $(MLIB)
176 +
177   ra_tiff:        ra_tiff.o ../lib/libtiff.a
178 <        cc $(CFLAGS) -o ra_tiff ra_tiff.o -lrt -ltiff -lm
178 >        $(CC) $(CFLAGS) -o ra_tiff ra_tiff.o -lrt -ltiff $(MLIB)
179  
180 < ra_tiff.o:      ra_tiff.c
152 <        cc $(CFLAGS) -Ilibtiff -c ra_tiff.c
180 > ../common/tiff.h:       ../lib/libtiff.a
181  
182 < ../lib/libtiff.a:
183 <        cd libtiff ; make -f Makefile.$(ARCH) ; \
184 <        mv libtiff.a ../../lib ; make clean
182 > ../lib/libtiff.a:       tiff/config.local
183 >        cd tiff ; ./configure -quiet -noninteractive ; \
184 >        cd libtiff ; make install ;
185 > #       cd .. ; make distclean
186  
187   ra_pixar:       ra_pixar.o ra_pixar.c
188 <        cc $(CFLAGS) $(PIXAR_INCLUDE) -o $@ ra_pixar.o -lrt \
188 >        $(CC) $(CFLAGS) $(PIXAR_INCLUDE) -o $@ ra_pixar.o -lrt \
189   $(PIXAR_LIB)
190  
191   ra_pixar.o:     ra_pixar.c
192 <        cc $(CFLAGS) $(PIXAR_INCLUDE) -c ra_pixar.c
192 >        $(CC) $(CFLAGS) $(PIXAR_INCLUDE) -c ra_pixar.c
193  
194   xshowtrace:     xshowtrace.o x11findwind.o
195 <        cc $(CFLAGS) -o xshowtrace xshowtrace.o \
196 < x11findwind.o -lrt -lm -lX11
195 >        $(CC) $(CFLAGS) -o xshowtrace xshowtrace.o \
196 > x11findwind.o -lrt $(MLIB) -lX11
197  
198 < xshowtrace.o:   ../common/view.h ../common/standard.h \
199 < ../common/mat4.h ../common/fvect.h
198 > macbethcal:     macbethcal.o pmapgen.o mx3.o warp3d.o
199 >        $(CC) $(CFLAGS) -o macbethcal macbethcal.o pmapgen.o mx3.o warp3d.o \
200 > -lrt $(MLIB)
201  
202 +
203 + macbethcal.o:   pmap.h ../common/color.h ../common/resolu.h
204 +
205 + macbethcal.o pcond2.o pcwarp.o warp3d.o:        warp3d.h ../common/lookup.h
206 +
207 + pmapgen.o:      mx3.h pmap.h
208 +
209 + nclrtab.o:      neuclrtab.o
210 +        ln neuclrtab.c nclrtab.c
211 +        $(CC) $(CFLAGS) -DCOMPAT_MODE -c nclrtab.c
212 +        rm -f nclrtab.c
213 +
214   pcomb.o:        ../common/calcomp.h
215  
216   panim.o:        client/scan.h ../common/color.h ../common/random.h
217  
218 < pf2.o bnoise.o ra_t16.o:        ../common/random.h
218 > pf2.o bnoise.o ra_ps.o ra_t16.o:        ../common/random.h
219  
220 < pfilt.o pf2.o ttyimage.o t4027.o mt160r.o psum.o psign.o prot.o ra_pr24.o \
221 < d48c.o aedimage.o pcompos.o color.o resolu.o colrops.o pflip.o \
222 < greyscale.o ra_t8.o glimage.o ra_bn.o ra_t16.o \
223 < ra_pr.o pvalue.o pcomb.o pinterp.o ximage.o:    ../common/color.h
220 > neuclrtab.o clrtab.o pfilt.o pf2.o pf3.o ttyimage.o t4027.o mt160r.o \
221 > psum.o psign.o protate.o \
222 > pextrem.o ra_pr24.o d48c.o aedimage.o pcompos.o color.o resolu.o colrops.o \
223 > pflip.o greyscale.o ra_t8.o glimage.o ra_bn.o ra_t16.o ra_tiff.o ra_pict.o \
224 > ra_ps.o ra_pr.o pvalue.o pcomb.o pinterp.o ximage.o:    ../common/color.h
225  
226 < prot.o biq.o ciq.o pinterp.o ximage.o \
227 < image.o:        ../common/standard.h ../common/mat4.h ../common/fvect.h
226 > neuclrtab.o pvalue.o protate.o biq.o ciq.o pinterp.o ximage.o psign.o \
227 > xshowtrace.o clrtab.o pcomb.o pfilt.o pf3.o image.o:    ../common/standard.h \
228 > ../common/mat4.h ../common/fvect.h
229  
230   ximage.o xraster.o:     xraster.h
231  
232   x11image.o x11raster.o: x11raster.h
233  
234 + x11image.o:     ../common/tonemap.h ../common/color.h
235 +
236   ra_t8.o:        ../common/targa.h
237  
238 + ra_tiff.o:      ../common/tiff.h
239 +
240   aedimage.o ximage.o ra_t8.o ra_pr.o:    pic.h
241  
242   ciq.o cut.o closest.o biq.o:    pic.h ciq.h
243  
244 < pinterp.o ximage.o image.o:     ../common/view.h
244 > pinterp.o ximage.o x11showtrace.o image.o:      ../common/view.h
245  
246   ra_pict.o:      pict.h
247 +
248 + mt160r.o oki20c.o paintjet.o pcomb.o pcompos.o pfilt.o pflip.o \
249 + pinterp.o protate.o pvalue.o ra_bn.o ra_pict.o ra_pixar.o \
250 + ra_ppm.o ra_pr.o ra_pr24.o ra_rgbe.o ra_t16.o ra_t8.o glimage.o \
251 + ra_tiff.o ttyimage.o ximage.o x11image.o:       ../common/resolu.h
252 +
253 + pfilt.o:        ../common/paths.h ../common/view.h
254 +
255 + psign.o:        ../common/font.h
256 +
257 + pcond.o pcond2.o pcond3.o pcond4.o:     pcond.h ../common/standard.h \
258 + ../common/mat4.h ../common/fvect.h \
259 + ../common/color.h ../common/view.h ../common/resolu.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines