xref: /csrg-svn/lib/libplot/imagen/Makefile (revision 24986)
1#
2# Copyright (c) 1980 Regents of the University of California.
3# All rights reserved.  The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
6#	@(#)Makefile	5.1 (Berkeley) 09/21/85
7#
8CFLAGS=	-O
9OBJS=	arc.o box.o circle.o close.o cont.o dot.o erase.o label.o line.o \
10	linemod.o move.o open.o point.o scale.o space.o
11
12all:	../libimagen
13
14../libimagen: ${OBJS}
15	ar cr ../libimagen ${OBJS}
16
17close.o erase.o label.o line.o open.o: imp.h imPcodes.h
18cont.o move.o:	imp.h
19
20clean:
21	rm -f *.o
22