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

Comparing ray/src/meta/Rmakefile (file contents):
Revision 1.7 by greg, Wed Oct 22 02:15:07 2003 UTC vs.
Revision 1.9 by greg, Fri Nov 5 17:51:16 2004 UTC

# Line 22 | Line 22 | PROGS = $(DESTDIR)/meta2tga $(DESTDIR)/pexpand $(DESTD
22          $(DESTDIR)/x11meta $(DESTDIR)/bgraph $(DESTDIR)/igraph \
23          $(DESTDIR)/dgraph $(DESTDIR)/gcomp $(DESTDIR)/plot4
24  
25 SPECIALPROGS = $(DESTDIR)/mt160l $(DESTDIR)/mt160 $(DESTDIR)/mtext \
26        $(DESTDIR)/plotout $(DESTDIR)/okimate $(DESTDIR)/tbar \
27        $(DESTDIR)/mx80 $(DESTDIR)/t4014 $(DESTDIR)/imagew \
28        $(DESTDIR)/impress $(DESTDIR)/aed5 $(DESTDIR)/tscat \
29        $(DESTDIR)/tcurve #$(DESTDIR)/xmeta
30
25   # global targets
26   all: $(PROGS)
27  
34 special: $(SPECIALPROGS)
35
28   install: $(PROGS)
29          cp $(PROGS) $(INSTDIR)
30  
39 specialinstall: $(SPECIALPROGS)
40        cp $(SPECIALPROGS) $(INSTDIR)
41
31   clean:
32 <        set nonomatch; rm -f *.o $(PROGS) $(SPECIALPROGS) core
32 >        set nonomatch; rm -f *.o $(PROGS) core
33  
34   # individual targets
46 $(DESTDIR)/mt160l:      mt160l.o mplot.o plot.o palloc.o
47        $(CC) $(CFLAGS) -o mt160l mt160l.o mplot.o plot.o \
48 $(common) -lrt palloc.o
35  
50 $(DESTDIR)/okimate:     okimate.o mplot.o plot.o palloc.o
51        $(CC) $(CFLAGS) -o okimate okimate.o mplot.o plot.o \
52 $(common) palloc.o -lrt
53
54 $(DESTDIR)/imagew:      imagew.o mplot.o plot.o palloc.o
55        $(CC) $(CFLAGS) -o imagew imagew.o mplot.o plot.o $(common) \
56 palloc.o -lrt $(MLIB)
57
58 $(DESTDIR)/mt160:       mt160.o mplot.o plot.o palloc.o
59        $(CC) $(CFLAGS) -o mt160 mt160.o mplot.o plot.o $(common) \
60 palloc.o -lrt
61
36   $(DESTDIR)/meta2tga:    meta2tga.o rplot.o plot.o palloc.o
37          $(CC) $(CFLAGS) -o meta2tga meta2tga.o rplot.o plot.o $(common) \
38   palloc.o -lrt $(MLIB)
39  
66 $(DESTDIR)/mx80:        mx80.o mplot.o plot.o palloc.o
67        $(CC) $(CFLAGS) -o mx80 mx80.o mplot.o plot.o $(common) \
68 palloc.o -lrt $(MLIB)
69
70 $(DESTDIR)/t4014:       plotout.c ../lib/lib4014.a
71        $(CC) -DFORTEK $(CFLAGS) -o t4014 plotout.c $(common) \
72 -l4014 -lrt $(MLIB)
73        rm -f plotout.o
74
75 $(DESTDIR)/impress:     impress.o implot.o imPfuncs.o plot.o
76        $(CC) $(CFLAGS) -o impress impress.o implot.o imPfuncs.o \
77 plot.o $(common) -lrt $(MLIB)
78
79 $(DESTDIR)/aed5:        aed5.o
80        $(CC) $(CFLAGS) -o aed5 aed5.o $(common) -lrt $(MLIB)
81
82 #$(DESTDIR)/xmeta:      xmeta.o xplot.o plot.o palloc.o
83 #       $(CC) $(CFLAGS) -o xmeta xmeta.o xplot.o plot.o palloc.o \
84 #$(common) -lrt -lX11 $(MLIB)
85
40   $(DESTDIR)/x11meta:     xmeta.o x11plot.o plot.o palloc.o
41          $(CC) $(CFLAGS) -o x11meta xmeta.o x11plot.o plot.o palloc.o \
42   $(common) -lrt -lX11 $(MLIB)
# Line 90 | Line 44 | $(common) -lrt -lX11 $(MLIB)
44   $(DESTDIR)/psmeta:      psmeta.o psplot.o
45          $(CC) $(CFLAGS) -o psmeta psmeta.o psplot.o $(common) -lrt $(MLIB)
46  
93 $(DESTDIR)/plotout:     plotout.o ../lib/lib4014.a
94        $(CC) $(CFLAGS) -o plotout plotout.o $(common) -lplot -lrt -l4014 $(MLIB)
95
47   $(DESTDIR)/plotin:      plotin.o primout.o
48          $(CC) $(CFLAGS) -o plotin plotin.o primout.o $(common) -lrt $(MLIB)
49  
# Line 150 | Line 101 | $(DESTDIR)/gcomp:      gcomp.o gcalc.o mgvars.o
101   -lrt $(MLIB)
102  
103   # dependencies
104 < $(DESTDIR)/meta2tga $(DESTDIR)/okimate $(DESTDIR)/impress \
105 < $(DESTDIR)/mx80 $(DESTDIR)/t4014 $(DESTDIR)/plotout $(DESTDIR)/x11meta \
106 < $(DESTDIR)/mt160l $(DESTDIR)/mt160 $(DESTDIR)/pexpand $(DESTDIR)/plot4 \
156 < $(DESTDIR)/psort $(DESTDIR)/imagew $(DESTDIR)/tcurve $(DESTDIR)/mtext \
157 < $(DESTDIR)/tscat $(DESTDIR)/plotin $(DESTDIR)/tbar \
158 < $(DESTDIR)/xmeta ../lib/libmeta.a aed5 psmeta:  $(common)
104 > $(DESTDIR)/meta2tga $(DESTDIR)/x11meta \
105 > $(DESTDIR)/pexpand $(DESTDIR)/plot4 $(DESTDIR)/psort $(DESTDIR)/mtext \
106 > $(DESTDIR)/plotin ../lib/libmeta.a psmeta:      $(common)
107  
108   cvhfio.o:       cvhfio.c hfio.c
109  
# Line 164 | Line 112 | mgvars.o igraph.o mgraph.o cgraph.o gcalc.o:   mgvars.h
112   mgraph.o:       mgraph.h
113  
114   misc.o syscalls.o mfio.o hfio.o cvhfio.o palloc.o segment.o sort.o expand.o \
115 < plot.o mplot.o primout.o tgraph.o mt160l.o mt160.o mx80.o plotout.o \
116 < psort.o pexpand.o cv.o tcurve.o tscat.o mtext.o tbar.o plot4.o \
169 < xmeta.o metacalls.o xplot.o meta2tga.o rplot.o: meta.h ../common/rterror.h
115 > plot.o mplot.o primout.o psort.o pexpand.o cv.o mtext.o plot4.o \
116 > xmeta.o metacalls.o meta2tga.o rplot.o: meta.h ../common/rterror.h
117  
118 < plot.o mplot.o mt160l.o mt160.o mx80.o xmeta.o xplot.o \
172 < meta2tga.o rplot.o implot.o:    plot.h
118 > plot.o mplot.o meta2tga.o rplot.o:      plot.h
119  
120 < mplot.o mt160l.o mt160.o mx80.o:        span.h
175 <
176 < tgraph.o tcurve.o tscat.o tbar.o:       tgraph.h
177 <
178 < impress.o implot.o imPfuncs.o:  imPfuncs.h
120 > mplot.o:        span.h
121  
122   rplot.o meta2tga.o:     rast.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines