ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/ot/Rmakefile
Revision: 1.15
Committed: Mon Jul 15 11:42:58 1991 UTC (32 years, 9 months ago) by greg
Branch: MAIN
Changes since 1.14: +19 -37 lines
Log Message:
put objects into common library

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 greg 1.4 OPT = -O
12 greg 1.10 MACH = -DBSD -DSTRUCTASSIGN -f68881 /usr/lib/libm.il
13 greg 1.4 CFLAGS = -DSTRICT $(OPT) $(MACH)
14 greg 1.1
15 greg 1.13 LIBDIR = /usr/local/lib/ray
16    
17 greg 1.10 INSTDIR = /lumen/lumen/ray/bin.sun3
18 greg 1.1
19 greg 1.14 all: oconv getbbox
20    
21 greg 1.15 oconv: oconv.o sphere.o writeoct.o o_face.o plocate.o \
22     clip.o o_cone.o o_instance.o bbox.o initotypes.o
23     cc $(CFLAGS) -o oconv oconv.o writeoct.o sphere.o o_face.o \
24     plocate.o clip.o o_cone.o o_instance.o bbox.o \
25     initotypes.o ../common/librt.a -lm
26 greg 1.1
27 greg 1.15 getbbox: getbbox.o readobj2.o bbox.o initotypes2.o
28     cc $(CFLAGS) -o getbbox getbbox.o readobj2.o \
29     bbox.o initotypes2.o ../common/librt.a -lm
30 greg 1.14
31     install: oconv getbbox
32     cp oconv getbbox $(INSTDIR)
33 greg 1.9
34     clean:
35 greg 1.11 set nonomatch; rm -f oconv *.o core
36 greg 1.13
37     oconv.o: oconv.c
38     cc $(CFLAGS) -DDEFPATH=\":$(LIBDIR)\" -c oconv.c
39 greg 1.1
40 greg 1.15 bbox.o initotypes.o o_cone.o o_face.o \
41     o_instance.o oconv.o sphere.o writeoct.o: standard.h mat4.h fvect.h
42 greg 1.1
43 greg 1.15 initotypes.o o_cone.o o_face.o oconv.o \
44     sphere.o writeoct.o: octree.h
45 greg 1.1
46 greg 1.15 bbox.o o_cone.o o_face.o o_instance.o oconv.o \
47     sphere.o writeoct.o: object.h
48 greg 1.1
49 greg 1.15 bbox.o initotypes.o oconv.o \
50     sphere.o writeoct.o: otypes.h
51 greg 1.1
52 greg 1.15 bbox.o o_cone.o: cone.h
53 greg 1.8
54 greg 1.15 bbox.o o_face.o: face.h
55 greg 1.1
56 greg 1.15 bbox.o o_instance.o: instance.h octree.h
57 greg 1.1
58     clip.o o_face.o plocate.o: plocate.h