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 2.25 by greg, Thu Feb 15 10:49:05 1996 UTC vs.
Revision 2.35 by gregl, Fri Aug 22 12:12:14 1997 UTC

# Line 1 | Line 1
1 < #  Compiles for image processing and display programs
2 < # SCCSid "$SunId$ LBL"
1 > # Compiles for image processing and display programs
2 > # SCCSid "$SunId$ SGI"
3   #
4  
5   ARCH = sun
6   OPT = -O
7   MACH = -DBSD
8 < SPECIAL = aed tiff
8 > SPECIAL = aed
9   CFLAGS = $(OPT) $(MACH) -I../common -L../lib
10   CC = cc
11   MLIB = -lm
# Line 17 | Line 17 | LIBDIR = /usr/local/lib/ray
17   PIXAR_INCLUDE=  -I/usr/pixar/include
18   PIXAR_LIB=      -L/usr/pixar/host/lib -lpirl -lpicio -lchad -lpixar $(MLIB)
19  
20 < PROGS = pfilt ttyimage oki20c oki20 paintjet mt160r getinfo psign \
21 < greyscale pvalue pcompos colorscale protate ra_pr ra_pr24 ra_avs \
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 ra_ps pextrem ra_gif ra_xyze macbethcal
23 > ra_rgbe ra_pict ra_ps pextrem ra_gif ra_xyze macbethcal pcond pcwarp
24  
25   all:    $(PROGS) $(SPECIAL)
26  
# Line 33 | Line 33 | aed:   aedimage
33   sgi:    glimage
34          cp glimage $(INSTDIR)
35  
36 tiff:   ra_tiff
37        cp ra_tiff $(INSTDIR)
38
36   sun:
37  
38   install:        $(PROGS) $(SPECIAL) normpat.csh falsecolor.csh \
# Line 56 | Line 53 | $(PROGS) *.o core
53   pfilt:  pfilt.o pf2.o pf3.o
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 $(MLIB)
65  
# Line 81 | Line 85 | paintjet:      paintjet.o
85   mt160r: mt160r.o
86          $(CC) $(CFLAGS) -o mt160r mt160r.o -lrt $(MLIB)
87  
84 getinfo:        getinfo.o
85        $(CC) $(CFLAGS) -o getinfo getinfo.o -lrt
86
88   greyscale:      greyscale.o
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 $(MLIB)
# Line 100 | Line 101 | pcompos:       pcompos.o
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
# Line 152 | Line 153 | ximage:        x11image.o x11raster.o clrtab.o
153   clrtab.o -lX11 -lrt $(MLIB)
154  
155   protate:                protate.o
156 <        $(CC) $(CFLAGS) -o protate protate.o -lrt
156 >        $(CC) $(CFLAGS) -o protate protate.o -lrt -lm
157  
158   pextrem:        pextrem.o
159 <        $(CC) $(CFLAGS) -o pextrem pextrem.o -lrt
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 \
# Line 176 | Line 177 | ra_xyze:       ra_xyze.o
177   ra_tiff:        ra_tiff.o ../lib/libtiff.a
178          $(CC) $(CFLAGS) -o ra_tiff ra_tiff.o -lrt -ltiff $(MLIB)
179  
180 < ra_tiff.o:      ra_tiff.c
181 <        $(CC) $(CFLAGS) -Ilibtiff -c ra_tiff.c
180 > ../lib/libtiff.a:       tiff/config.local
181 >        cd tiff ; ./configure -quiet -noninteractive ; \
182 >        cd libtiff ; make install ;
183 > #       cd .. ; make distclean
184  
182 ../lib/libtiff.a:
183        cd libtiff ; make -f Makefile.$(ARCH) ; \
184        mv libtiff.a ../../lib ; make clean
185
185   ra_pixar:       ra_pixar.o ra_pixar.c
186          $(CC) $(CFLAGS) $(PIXAR_INCLUDE) -o $@ ra_pixar.o -lrt \
187   $(PIXAR_LIB)
# Line 194 | Line 193 | xshowtrace:    xshowtrace.o x11findwind.o
193          $(CC) $(CFLAGS) -o xshowtrace xshowtrace.o \
194   x11findwind.o -lrt $(MLIB) -lX11
195  
196 < macbethcal:     macbethcal.o pmapgen.o mx3.o
197 <        $(CC) $(CFLAGS) -o macbethcal macbethcal.o pmapgen.o mx3.o -lrt $(MLIB)
196 > macbethcal:     macbethcal.o pmapgen.o mx3.o warp3d.o
197 >        $(CC) $(CFLAGS) -o macbethcal macbethcal.o pmapgen.o mx3.o warp3d.o \
198 > -lrt $(MLIB)
199  
200  
201   macbethcal.o:   pmap.h ../common/color.h ../common/resolu.h
202  
203 + macbethcal.o pcond2.o pcwarp.o warp3d.o:        warp3d.h ../common/lookup.h
204 +
205   pmapgen.o:      mx3.h pmap.h
206  
207   nclrtab.o:      neuclrtab.o
# Line 227 | Line 229 | ximage.o xraster.o:    xraster.h
229  
230   x11image.o x11raster.o: x11raster.h
231  
232 + x11image.o:     ../common/tonemap.h ../common/color.h
233 +
234   ra_t8.o:        ../common/targa.h
235  
236 + ra_tiff.o:      ../common/tiff.h
237 +
238   aedimage.o ximage.o ra_t8.o ra_pr.o:    pic.h
239  
240   ciq.o cut.o closest.o biq.o:    pic.h ciq.h
# Line 242 | Line 248 | pinterp.o protate.o pvalue.o ra_bn.o ra_pict.o ra_pixa
248   ra_ppm.o ra_pr.o ra_pr24.o ra_rgbe.o ra_t16.o ra_t8.o glimage.o \
249   ra_tiff.o ttyimage.o ximage.o x11image.o:       ../common/resolu.h
250  
251 < pfilt.o:        ../common/paths.h
251 > pfilt.o:        ../common/paths.h ../common/view.h
252  
253   psign.o:        ../common/font.h
254 +
255 + pcond.o pcond2.o pcond3.o pcond4.o:     pcond.h ../common/standard.h \
256 + ../common/mat4.h ../common/fvect.h \
257 + ../common/color.h ../common/view.h ../common/resolu.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines