ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/gen/Rmakefile
Revision: 1.10
Committed: Sun Feb 17 22:37:05 1991 UTC (33 years, 2 months ago) by greg
Branch: MAIN
Changes since 1.9: +5 -2 lines
Log Message:
added replmarks

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.7 MACH = -DBSD -DSTRUCTASSIGN -f68881 /usr/lib/f68881.il -DIEEE
9 greg 1.5 CFLAGS = $(MACH) $(OPT)
10 greg 1.1
11     INSTDIR = /usr/local/ray
12    
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.2 install genpine.csh $(INSTDIR)/genpine
21     install genwindow.csh $(INSTDIR)/genwindow
22 greg 1.1
23     genbeads: genbeads.o hermite3.o
24     cc $(CFLAGS) -o genbeads genbeads.o hermite3.o -lm
25    
26     genbox: genbox.o
27     cc $(CFLAGS) -o genbox genbox.o
28    
29     genmarble: genmarble.o random.h
30     cc $(CFLAGS) -o genmarble genmarble.o -lm
31    
32     gensky: gensky.o sun.o
33     cc $(CFLAGS) -o gensky gensky.o sun.o -lm
34    
35     genblinds: genblinds.o
36     cc $(CFLAGS) -o genblinds genblinds.o -lm
37    
38     genprism: genprism.o
39     cc $(CFLAGS) -o genprism genprism.o
40    
41 greg 1.4 xform: xform.o xf.o mat4.o fgetline.o
42     cc $(CFLAGS) -o xform xform.o xf.o mat4.o fgetline.o -lm
43 greg 1.1
44 greg 1.10 replmarks: replmarks.o fvect.o fgetline.o
45     cc $(CFLAGS) -o replmarks replmarks.o fvect.o fgetline.o -lm
46    
47 greg 1.1 genrev: genrev.o calexpr.o caldefn.o calfunc.o \
48     ealloc.o savestr.o
49     cc $(CFLAGS) -o genrev genrev.o caldefn.o calexpr.o \
50     calfunc.o ealloc.o savestr.o -lm
51    
52     genworm: genworm.o calexpr.o caldefn.o calfunc.o \
53     ealloc.o savestr.o fvect.o
54     cc $(CFLAGS) -o genworm genworm.o caldefn.o calexpr.o \
55     calfunc.o ealloc.o savestr.o fvect.o -lm
56    
57     gensurf: gensurf.o fvect.o calexpr.o caldefn.o calfunc.o \
58     ealloc.o savestr.o
59     cc $(CFLAGS) -o gensurf gensurf.o caldefn.o calexpr.o \
60     calfunc.o ealloc.o savestr.o fvect.o -lm
61    
62     genbranch: genbranch.o
63     cc $(CFLAGS) -o genbranch genbranch.o -lm
64    
65     calexpr.o: calexpr.c calcomp.h
66     cc $(CFLAGS) -c -DVARIABLE -DFUNCTION -DRCONST calexpr.c
67    
68     caldefn.o: caldefn.c calcomp.h
69     cc $(CFLAGS) -c -DFUNCTION caldefn.c
70    
71     calfunc.o: calfunc.c calcomp.h
72     cc $(CFLAGS) -c -DVARIABLE -DBIGLIB calfunc.c
73    
74 greg 1.9 gensurf.o: standard.h mat4.h fvect.h
75 greg 1.7
76 greg 1.10 fvect.o genworm.o replmarks.o: fvect.h
77 greg 1.8
78 greg 1.9 mat4.o: mat4.h fvect.h
79    
80     xform.o: standard.h mat4.h fvect.h otypes.h