ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/gen/Rmakefile
Revision: 1.15
Committed: Wed Jun 26 13:00:30 1991 UTC (32 years, 9 months ago) by greg
Branch: MAIN
Changes since 1.14: +1 -1 lines
Log Message:
corrected oversight for xf.o dependencies

File Contents

# User Rev Content
1 greg 1.1 # SCCSid "$SunId$ LBL"
2    
3     #
4     # Makefile for object generation programs
5     #
6    
7 greg 1.5 OPT = -O
8 greg 1.12 MACH = -DBSD -DSTRUCTASSIGN -f68881 /usr/lib/libm.il -DIEEE
9 greg 1.5 CFLAGS = $(MACH) $(OPT)
10 greg 1.1
11 greg 1.12 INSTDIR = /lumen/lumen/ray/bin.sun3
12 greg 1.1
13     PROGS = genbox gensky xform genblinds genrev genworm \
14 greg 1.10 gensurf genprism replmarks
15 greg 1.1
16     all: $(PROGS)
17    
18 greg 1.2 install: $(PROGS) genpine.csh genwindow.csh
19 greg 1.1 cp $(PROGS) $(INSTDIR)
20 greg 1.11 cp genwindow.csh $(INSTDIR)/genwindow
21     chmod 755 $(INSTDIR)/genwindow
22    
23     clean:
24 greg 1.13 set nonomatch; rm -f $(PROGS) *.o core
25 greg 1.1
26     genbeads: genbeads.o hermite3.o
27     cc $(CFLAGS) -o genbeads genbeads.o hermite3.o -lm
28    
29     genbox: genbox.o
30     cc $(CFLAGS) -o genbox genbox.o
31    
32     genmarble: genmarble.o random.h
33     cc $(CFLAGS) -o genmarble genmarble.o -lm
34    
35     gensky: gensky.o sun.o
36     cc $(CFLAGS) -o gensky gensky.o sun.o -lm
37    
38     genblinds: genblinds.o
39     cc $(CFLAGS) -o genblinds genblinds.o -lm
40    
41     genprism: genprism.o
42     cc $(CFLAGS) -o genprism genprism.o
43    
44 greg 1.4 xform: xform.o xf.o mat4.o fgetline.o
45     cc $(CFLAGS) -o xform xform.o xf.o mat4.o fgetline.o -lm
46 greg 1.1
47 greg 1.10 replmarks: replmarks.o fvect.o fgetline.o
48     cc $(CFLAGS) -o replmarks replmarks.o fvect.o fgetline.o -lm
49    
50 greg 1.1 genrev: genrev.o calexpr.o caldefn.o calfunc.o \
51     ealloc.o savestr.o
52     cc $(CFLAGS) -o genrev genrev.o caldefn.o calexpr.o \
53     calfunc.o ealloc.o savestr.o -lm
54    
55     genworm: genworm.o calexpr.o caldefn.o calfunc.o \
56     ealloc.o savestr.o fvect.o
57     cc $(CFLAGS) -o genworm genworm.o caldefn.o calexpr.o \
58     calfunc.o ealloc.o savestr.o fvect.o -lm
59    
60     gensurf: gensurf.o fvect.o calexpr.o caldefn.o calfunc.o \
61     ealloc.o savestr.o
62     cc $(CFLAGS) -o gensurf gensurf.o caldefn.o calexpr.o \
63     calfunc.o ealloc.o savestr.o fvect.o -lm
64    
65     genbranch: genbranch.o
66     cc $(CFLAGS) -o genbranch genbranch.o -lm
67    
68     calexpr.o: calexpr.c calcomp.h
69     cc $(CFLAGS) -c -DVARIABLE -DFUNCTION -DRCONST calexpr.c
70    
71     caldefn.o: caldefn.c calcomp.h
72 greg 1.14 cc $(CFLAGS) -c -DFUNCTION -DRCONST caldefn.c
73 greg 1.1
74     calfunc.o: calfunc.c calcomp.h
75     cc $(CFLAGS) -c -DVARIABLE -DBIGLIB calfunc.c
76    
77 greg 1.15 gensurf.o xf.o: standard.h mat4.h fvect.h
78 greg 1.7
79 greg 1.10 fvect.o genworm.o replmarks.o: fvect.h
80 greg 1.8
81 greg 1.9 mat4.o: mat4.h fvect.h
82    
83     xform.o: standard.h mat4.h fvect.h otypes.h