ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/ot/Rmakefile
Revision: 1.1
Committed: Thu Feb 2 10:33:07 1989 UTC (35 years, 2 months ago) by greg
Branch: MAIN
Log Message:
Initial revision

File Contents

# User Rev Content
1 greg 1.1 # SCCSid "$SunId$ LBL"
2    
3     #
4     # Compiles for octree conversion program
5     #
6     # The compile define "STRICT" enforces strict intersection calculations
7     # so that no cube which does not intersect an object contains that object.
8     # Otherwise, a somewhat faster more lax approach is taken by certain routines.
9     #
10    
11     CFLAGS = -DSTRICT -O -f68881 /usr/lib/f68881.il
12    
13     INSTDIR = /usr/local/ray
14    
15     COMPAT = malloc.o
16    
17     oconv: dummy.o misc.o objset.o oconv.o octree.o readobj.o \
18     readoct.o sphere.o fvect.o otypes.o writeoct.o o_face.o face.o plocate.o xf.o \
19     clip.o cone.o o_cone.o instance.o o_instance.o bbox.o savestr.o header.o \
20     mat4.o $(COMPAT)
21     cc $(CFLAGS) -o oconv oconv.o readoct.o octree.o objset.o \
22     readobj.o writeoct.o fvect.o otypes.o sphere.o dummy.o misc.o o_face.o \
23     face.o plocate.o clip.o cone.o o_cone.o instance.o o_instance.o mat4.o xf.o \
24     bbox.o savestr.o header.o $(COMPAT) -lm
25    
26     install: oconv
27     sccs check
28     install oconv $(INSTDIR)
29    
30     xf.o: xf.c
31     cc $(CFLAGS) -DINVXF -c xf.c
32    
33     bbox.o cone.o face.o misc.o o_cone.o o_face.o \
34     o_instance.o objset.o oconv.o instance.o octree.o \
35     otypes.o readobj.o readoct.o sphere.o writeoct.o: standard.h fvect.h
36    
37     o_cone.o o_face.o objset.o oconv.o octree.o \
38     readoct.o sphere.o writeoct.o: octree.h
39    
40     bbox.o cone.o face.o o_cone.o o_face.o o_instance.o objset.o oconv.o \
41     instance.o otypes.o readobj.o readoct.o sphere.o writeoct.o: object.h
42    
43     bbox.o cone.o oconv.o otypes.o \
44     readobj.o readoct.o sphere.o writeoct.o: otypes.h
45    
46     fvect.o: fvect.h
47    
48     bbox.o cone.o o_cone.o: cone.h
49    
50     bbox.o face.o o_face.o: face.h
51    
52     bbox.o o_instance.o instance.o: instance.h octree.h
53    
54     clip.o o_face.o plocate.o: plocate.h