ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/ot/Rmakefile
Revision: 2.7
Committed: Sat Feb 22 02:07:26 2003 UTC (21 years, 2 months ago) by greg
Branch: MAIN
Changes since 2.6: +6 -10 lines
Log Message:
Changes and check-in for 3.5 release
Includes new source files and modifications not recorded for many years
See ray/doc/notes/ReleaseNotes for notes between 3.1 and 3.5 release

File Contents

# User Rev Content
1 greg 2.7 # RCSid: $Id$
2 greg 1.1 #
3     # Compiles for octree conversion program
4     #
5     # The compile define "STRICT" enforces strict intersection calculations
6     # so that no cube which does not intersect an object contains that object.
7     # Otherwise, a somewhat faster more lax approach is taken by certain routines.
8     #
9    
10 greg 1.4 OPT = -O
11 greg 1.25 MACH = -DBSD
12 greg 2.7 CFLAGS = -DSTRICT -I../common -L../lib $(OPT) $(MACH)
13 greg 2.2 CC = cc
14 greg 2.4 MLIB = -lm
15 greg 1.1
16 greg 1.13 LIBDIR = /usr/local/lib/ray
17    
18 greg 1.23 INSTDIR = /usr/local/bin
19 greg 1.1
20 greg 1.14 all: oconv getbbox
21    
22 greg 2.6 oconv: oconv.o sphere.o writeoct.o o_face.o \
23 greg 2.7 o_cone.o o_instance.o bbox.o initotypes.o
24 greg 2.2 $(CC) $(CFLAGS) -o oconv oconv.o writeoct.o sphere.o o_face.o \
25 greg 2.7 o_cone.o o_instance.o bbox.o \
26     initotypes.o -lrt $(MLIB)
27 greg 1.1
28 greg 2.3 getbbox: getbbox.o readobj2.o bbox.o init2otypes.o
29 greg 2.2 $(CC) $(CFLAGS) -o getbbox getbbox.o readobj2.o \
30 greg 2.4 bbox.o init2otypes.o -lrt $(MLIB)
31 greg 1.14
32     install: oconv getbbox
33     cp oconv getbbox $(INSTDIR)
34 greg 1.9
35     clean:
36 greg 1.17 set nonomatch; rm -f oconv getbbox *.o core
37 greg 1.13
38 greg 1.15 bbox.o initotypes.o o_cone.o o_face.o \
39 greg 1.16 o_instance.o oconv.o sphere.o \
40     writeoct.o: ../common/standard.h ../common/mat4.h ../common/fvect.h
41 greg 1.1
42 greg 1.15 initotypes.o o_cone.o o_face.o oconv.o \
43 greg 1.16 sphere.o writeoct.o: ../common/octree.h
44 greg 1.1
45 greg 1.15 bbox.o o_cone.o o_face.o o_instance.o oconv.o \
46 greg 1.16 sphere.o writeoct.o: ../common/object.h
47 greg 1.1
48 greg 1.15 bbox.o initotypes.o oconv.o \
49 greg 1.16 sphere.o writeoct.o: ../common/otypes.h
50 greg 2.5
51     oconv.o: ../common/paths.h
52 greg 1.1
53 greg 1.16 bbox.o o_cone.o: ../common/cone.h
54 greg 1.8
55 greg 1.16 bbox.o o_face.o: ../common/face.h
56 greg 1.1
57 greg 2.7 bbox.o getbbox.o o_instance.o: ../common/instance.h ../common/octree.h
58 greg 1.1
59 greg 2.6 o_face.o: ../common/plocate.h
60 greg 1.19
61 greg 1.24 clip.o plocate.o: ../common/fvect.h
62    
63 greg 2.3 initotypes.o init2otypes.o: ../common/otypes.h