ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/Rmakefile
Revision: 1.2
Committed: Thu Mar 14 17:38:42 1991 UTC (33 years, 1 month ago) by greg
Branch: MAIN
Changes since 1.1: +5 -6 lines
Log Message:
broke setscan.h into its own file

File Contents

# User Rev Content
1 greg 1.1 #
2     # SCCSid "$SunId$ LBL"
3     #
4    
5 greg 1.2 MACH = -f68881 /usr/lib/libm.il -DIEEE -DBSD -DSTRUCTASSIGN
6 greg 1.1
7     OPT = -O
8    
9     CFLAGS = $(MACH) $(OPT)
10    
11     INSTDIR = /lumen/lumen/ray/bin.sun3
12    
13     PROGS = makedist swaprasheader
14    
15     all: $(PROGS)
16    
17     install: all objview.csh objpict.csh proj.csh
18     cp $(PROGS) $(INSTDIR)
19     cp objview.csh $(INSTDIR)/objview
20     cp objpict.csh $(INSTDIR)/objpict
21 greg 1.2 chmod 755 $(INSTDIR)/objview $(INSTDIR)/objpict
22 greg 1.1
23     clean:
24     rm -f *.o $(PROGS) core
25    
26     scanner: scanner.o
27     cc $(CFLAGS) -o scanner scanner.o -lm
28    
29 greg 1.2 makedist: makedist.o fvect.o setscan.o
30     cc $(CFLAGS) -o makedist makedist.o fvect.o setscan.o -lm
31 greg 1.1
32     contour: contour.o
33     cc $(CFLAGS) -o contour contour.o -lm
34    
35     pranim: pranim.o client/libclient.a
36     cc $(CFLAGS) -o pranim pranim.o \
37     client/libclient.a -lrpcsvc
38    
39     t16anim: t16anim.o client/libclient.a
40     cc $(CFLAGS) -o t16anim t16anim.o \
41     client/libclient.a -lrpcsvc
42    
43     t16anim.o pranim.o: client/clnt.h
44    
45 greg 1.2 makedist.o: setscan.h