ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/Rmakefile
Revision: 2.24
Committed: Wed Dec 13 14:07:08 1995 UTC (28 years, 4 months ago) by greg
Branch: MAIN
Changes since 2.23: +5 -2 lines
Log Message:
added pmblur script for motion blur

File Contents

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