ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/cv/mgflib/Makefile
Revision: 1.3
Committed: Tue Mar 7 14:53:28 1995 UTC (29 years, 2 months ago) by greg
Branch: MAIN
Changes since 1.2: +3 -3 lines
Log Message:
added cct entity

File Contents

# Content
1 #
2 # SCCSid "$SunId$ LBL"
3 # Makefile for MGF parser library
4 #
5
6 OPT = -g
7 MACH =
8 CFLAGS = $(MACH) $(OPT)
9 CC = cc
10
11 OBJS = parser.o context.o xf.o object.o lookup.o badarg.o words.o fvect.o
12
13 mgfilt: libmgf.a mgfilt.o
14 $(CC) $(CFLAGS) -o mgfilt mgfilt.o libmgf.a -lm
15
16 libmgf.a: $(OBJS)
17 ar rc libmgf.a $(OBJS)
18 -ranlib libmgf.a
19
20 clean:
21 set nonomatch ; rm -f *.o
22
23 parser.o context.o xf.o object.o fvect.o: parser.h
24
25 parser.o context.o lookup.o: lookup.h
26
27 parser.o: messages.h
28
29 mgfilt.o: parser.h