Revision: | 1.1 |
Committed: | Sat Feb 22 02:07:26 2003 UTC (22 years, 2 months ago) by greg |
Branch: | MAIN |
CVS Tags: | rad3R6P1, rad3R5, rad3R6 |
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 |
# | User | Rev | Content |
---|---|---|---|
1 | greg | 1.1 | # |
2 | CFLAGS= -O | ||
3 | INSTDIR=/usr/local/lib | ||
4 | |||
5 | OBJS= arc.o box.o circle.o close.o dot.o erase.o label.o \ | ||
6 | line.o linemod.o move.o open.o point.o space.o subr.o | ||
7 | |||
8 | lib4014.a: ${OBJS} | ||
9 | ar rc lib4014.a ${OBJS} | ||
10 | -ranlib lib4014.a | ||
11 | |||
12 | install: lib4014.a | ||
13 | cp lib4014.a $(INSTDIR) | ||
14 | |||
15 | clean: | ||
16 | rm -f $(OBJS) lib4014.a |