ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/Rmakefile
Revision: 1.19
Committed: Thu Oct 18 12:25:19 1990 UTC (33 years, 6 months ago) by greg
Branch: MAIN
Changes since 1.18: +5 -2 lines
Log Message:
added ra_pr24

File Contents

# User Rev Content
1 greg 1.1 # SCCSid "$SunId$ LBL"
2    
3     #
4     # Compiles for pixel file plotters.
5     #
6    
7 greg 1.8 OPT = -O
8 greg 1.14 MACH = -DBSD -DSTRUCTASSIGN -f68881 /usr/lib/f68881.il -DIEEE
9 greg 1.8 CFLAGS = $(OPT) $(MACH)
10 greg 1.1
11     INSTDIR = /usr/local/ray
12    
13 greg 1.8 CALDEFS = -DFUNCTION -DVARIABLE -DRCONST -DBIGLIB
14 greg 1.1
15 greg 1.4 PIXAR_INCLUDE= -I/usr/pixar/include
16     PIXAR_LIB= -L/usr/pixar/host/lib -lpirl -lpicio -lchad -lpixar -lm
17    
18 greg 1.7 PROGS = pfilt ttyimage aedimage oki20c paintjet mt160r getinfo psign \
19 greg 1.19 greyscale pvalue pcompos colorscale ra_pr ra_pr24 ximage prot \
20 greg 1.18 ra_t8 ra_bn ra_t16 pcomb pinterp x11image xshowtrace
21 greg 1.1
22     all: $(PROGS)
23    
24     install: $(PROGS)
25     cp $(PROGS) $(INSTDIR)
26    
27 greg 1.18 pfilt: pfilt.o pf2.o pf3.o resolu.o color.o header.o
28     cc $(CFLAGS) -o pfilt pfilt.o pf2.o pf3.o resolu.o color.o header.o -lm
29 greg 1.1
30 greg 1.18 ttyimage: ttyimage.o resolu.o color.o header.o
31     cc $(CFLAGS) -o ttyimage ttyimage.o resolu.o color.o header.o
32 greg 1.1
33 greg 1.18 t4027: t4027.o color.o resolu.o
34     cc $(CFLAGS) -o t4027 t4027.o color.o resolu.o
35 greg 1.1
36 greg 1.18 glimage: glimage.o color.o resolu.o header.o
37     cc $(CFLAGS) -o glimage glimage.o color.o resolu.o header.o -lgl_s
38 greg 1.16
39 greg 1.18 aedimage: aedimage.o color.o resolu.o ciq.o cut.o closest.o ealloc.o biq.o header.o
40     cc $(CFLAGS) -o aedimage aedimage.o color.o resolu.o ciq.o cut.o \
41 greg 1.6 closest.o ealloc.o biq.o header.o -lm
42 greg 1.1
43 greg 1.18 oki20c: oki20c.o color.o resolu.o header.o
44     cc $(CFLAGS) -o oki20c oki20c.o color.o resolu.o header.o
45 greg 1.7
46 greg 1.18 paintjet: paintjet.o color.o resolu.o header.o
47     cc $(CFLAGS) -o paintjet paintjet.o color.o resolu.o header.o
48 greg 1.1
49 greg 1.18 mt160r: mt160r.o color.o resolu.o header.o
50     cc $(CFLAGS) -o mt160r mt160r.o color.o resolu.o header.o
51 greg 1.1
52     getinfo: getinfo.o header.o
53     cc $(CFLAGS) -n -o getinfo getinfo.o header.o
54    
55 greg 1.18 greyscale: greyscale.o color.o resolu.o
56     cc $(CFLAGS) -o greyscale greyscale.o color.o resolu.o -lm
57 greg 1.1
58 greg 1.18 colorscale: colorscale.o color.o resolu.o
59     cc $(CFLAGS) -o colorscale colorscale.o color.o resolu.o
60 greg 1.1
61 greg 1.18 pvalue: pvalue.o color.o resolu.o header.o
62     cc $(CFLAGS) -o pvalue pvalue.o color.o resolu.o header.o
63 greg 1.1
64 greg 1.18 psum: psum.o color.o resolu.o header.o
65     cc $(CFLAGS) -o psum psum.o color.o resolu.o header.o
66 greg 1.1
67 greg 1.18 pcompos: pcompos.o color.o resolu.o header.o
68     cc $(CFLAGS) -o pcompos pcompos.o color.o resolu.o header.o
69 greg 1.1
70 greg 1.18 psign: psign.o color.o resolu.o
71     cc $(CFLAGS) -o psign psign.o color.o resolu.o
72 greg 1.1
73 greg 1.18 d48c: d48c.o color.o resolu.o
74     cc $(CFLAGS) -o d48c d48c.o color.o resolu.o
75 greg 1.1
76 greg 1.18 ra_pr: ra_pr.o ciq.o cut.o closest.o color.o resolu.o ealloc.o header.o biq.o
77 greg 1.1 cc $(CFLAGS) -o ra_pr ra_pr.o ciq.o cut.o closest.o \
78 greg 1.18 color.o resolu.o ealloc.o header.o biq.o -lm
79 greg 1.1
80 greg 1.19 ra_pr24: ra_pr24.o color.o resolu.o header.o
81     cc $(CFLAGS) -o ra_pr24 ra_pr24.o color.o resolu.o header.o -lm
82    
83 greg 1.18 ra_t8: ra_t8.o ciq.o cut.o closest.o color.o resolu.o ealloc.o header.o biq.o
84 greg 1.1 cc $(CFLAGS) -o ra_t8 ra_t8.o ciq.o cut.o closest.o \
85 greg 1.18 color.o resolu.o ealloc.o header.o biq.o -lm
86 greg 1.1
87 greg 1.18 ra_t16: ra_t16.o color.o resolu.o ealloc.o header.o
88     cc $(CFLAGS) -o ra_t16 ra_t16.o color.o resolu.o ealloc.o header.o -lm
89 greg 1.1
90     ra_im: ra_im.o
91     cc $(CFLAGS) -n -o ra_im ra_im.o
92    
93 greg 1.18 ra_bn: ra_bn.o color.o resolu.o header.o
94     cc $(CFLAGS) -o ra_bn ra_bn.o color.o resolu.o header.o -lm
95 greg 1.1
96 greg 1.18 ximage: ximage.o color.o resolu.o ciq.o cut.o closest.o ealloc.o \
97 greg 1.1 xraster.o header.o biq.o image.o fvect.o
98 greg 1.18 cc $(CFLAGS) -o ximage ximage.o color.o resolu.o xraster.o \
99 greg 1.1 header.o ciq.o cut.o closest.o ealloc.o biq.o image.o fvect.o -lX -lm
100    
101 greg 1.18 x11image: x11image.o color.o resolu.o ciq.o cut.o closest.o ealloc.o \
102 greg 1.17 x11raster.o header.o biq.o image.o fvect.o
103 greg 1.18 cc $(CFLAGS) -o x11image x11image.o color.o resolu.o x11raster.o \
104 greg 1.17 header.o ciq.o cut.o closest.o ealloc.o biq.o image.o fvect.o -lX11 -lm
105    
106 greg 1.18 prot: prot.o color.o resolu.o header.o
107     cc $(CFLAGS) -o prot prot.o color.o resolu.o header.o
108 greg 1.1
109 greg 1.18 panim: panim.o color.o resolu.o header.o client/libclient.a
110     cc $(CFLAGS) -o panim panim.o color.o resolu.o header.o \
111     client/libclient.a -lrpcsvc -lm
112 greg 1.1
113 greg 1.18 pcomb: pcomb.o calexpr.o calfunc.o caldefn.o color.o resolu.o \
114 greg 1.1 header.o ealloc.o savestr.o
115     cc $(CFLAGS) -o pcomb pcomb.o calexpr.o calfunc.o caldefn.o \
116 greg 1.18 color.o resolu.o header.o ealloc.o savestr.o -lm
117 greg 1.1
118 greg 1.18 pinterp: pinterp.o image.o header.o color.o resolu.o fvect.o mat4.o
119 greg 1.11 cc $(CFLAGS) -o pinterp pinterp.o image.o header.o mat4.o \
120 greg 1.18 fvect.o color.o resolu.o -lm
121 greg 1.10
122 greg 1.18 ra_pixar: ra_pixar.o ra_pixar.c color.o resolu.o header.o
123     cc $(CFLAGS) $(PIXAR_INCLUDE) -o $@ ra_pixar.o color.o resolu.o header.o \
124 greg 1.4 $(PIXAR_LIB)
125    
126 greg 1.1 calexpr.o: calexpr.c
127     cc $(CFLAGS) $(CALDEFS) -c calexpr.c
128    
129     calfunc.o: calfunc.c
130     cc $(CFLAGS) $(CALDEFS) -c calfunc.c
131    
132     caldefn.o: caldefn.c
133     cc $(CFLAGS) $(CALDEFS) -c caldefn.c
134 greg 1.4
135     ra_pixar.o: ra_pixar.c
136     cc $(CFLAGS) $(PIXAR_INCLUDE) -c ra_pixar.c
137 greg 1.1
138 greg 1.18 xshowtrace: xshowtrace.o image.o resolu.o header.o fvect.o
139     cc $(CFLAGS) -o xshowtrace xshowtrace.o image.o resolu.o header.o \
140     fvect.o -lm -lX11
141    
142     xshowtrace.o: view.h standard.h fvect.h
143    
144 greg 1.1 pcomb.o calexpr.o calfunc.o caldefn.o: calcomp.h
145    
146 greg 1.18 panim.o: client/scan.h color.h random.h
147 greg 1.1
148     pf2.o bnoise.o: random.h
149    
150 greg 1.3 ra_t16.o: random.h
151    
152 greg 1.19 pfilt.o pf2.o ttyimage.o t4027.o mt160r.o psum.o psign.o prot.o ra_pr24.o \
153 greg 1.18 d48c.o aedimage.o pcompos.o color.o resolu.o greyscale.o ra_t8.o glimage.o \
154 greg 1.12 ra_bn.o ra_t16.o ra_pr.o pvalue.o pcomb.o pinterp.o ximage.o: color.h
155 greg 1.1
156 greg 1.10 pinterp.o ximage.o image.o: standard.h fvect.h
157 greg 1.1
158 greg 1.17 ximage.o x11raster.o: xraster.h
159    
160     x11image.o x11raster.o: x11raster.h
161 greg 1.1
162     ra_t8.o: targa.h
163    
164     fvect.o: fvect.h
165    
166     aedimage.o ximage.o ra_t8.o ra_pr.o: pic.h
167    
168     ciq.o cut.o closest.o biq.o: pic.h ciq.h
169    
170 greg 1.10 pinterp.o ximage.o image.o: view.h