ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/ot/Rmakefile
Revision: 1.12
Committed: Tue May 7 16:17:19 1991 UTC (32 years, 11 months ago) by greg
Branch: MAIN
Changes since 1.11: +1 -1 lines
Log Message:
took out dependency on malloc.o

File Contents

# Content
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 OPT = -O
12 MACH = -DBSD -DSTRUCTASSIGN -f68881 /usr/lib/libm.il
13 CFLAGS = -DSTRICT $(OPT) $(MACH)
14
15 INSTDIR = /lumen/lumen/ray/bin.sun3
16
17 COMPAT = bmalloc.o
18
19 oconv: misc.o objset.o oconv.o octree.o readobj.o \
20 readoct.o sphere.o fvect.o otypes.o writeoct.o o_face.o face.o plocate.o xf.o \
21 clip.o cone.o o_cone.o instance.o o_instance.o bbox.o savestr.o header.o \
22 mat4.o fgetline.o initotypes.o $(COMPAT)
23 cc $(CFLAGS) -o oconv oconv.o readoct.o octree.o objset.o \
24 readobj.o writeoct.o fvect.o otypes.o sphere.o misc.o o_face.o \
25 face.o plocate.o clip.o cone.o o_cone.o instance.o o_instance.o mat4.o xf.o \
26 bbox.o savestr.o header.o fgetline.o initotypes.o $(COMPAT) -lm
27
28 install: oconv
29 cp oconv $(INSTDIR)
30
31 clean:
32 set nonomatch; rm -f oconv *.o core
33
34 xf.o: xf.c
35 cc $(CFLAGS) -DINVXF -c xf.c
36
37 bbox.o cone.o face.o initotypes.o misc.o o_cone.o o_face.o \
38 o_instance.o objset.o oconv.o instance.o octree.o otypes.o readobj.o \
39 readoct.o sphere.o writeoct.o xf.o: standard.h mat4.h fvect.h
40
41 initotypes.o o_cone.o o_face.o objset.o oconv.o octree.o \
42 readoct.o sphere.o writeoct.o: octree.h
43
44 bbox.o cone.o face.o o_cone.o o_face.o o_instance.o objset.o oconv.o \
45 instance.o otypes.o readobj.o readoct.o sphere.o writeoct.o: object.h
46
47 bbox.o cone.o initotypes.o objset.o oconv.o otypes.o \
48 readobj.o readoct.o sphere.o writeoct.o: otypes.h
49
50 mat4.o: mat4.h fvect.h
51
52 fvect.o: fvect.h
53
54 bbox.o cone.o o_cone.o: cone.h
55
56 bbox.o face.o o_face.o: face.h
57
58 bbox.o o_instance.o instance.o: instance.h octree.h
59
60 clip.o o_face.o plocate.o: plocate.h