xref: /csrg-svn/lib/libplot/grn/Makefile (revision 31637)
1#
2# Copyright (c) 1987 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	6.2	(Berkeley)	06/19/87
7#
8CFLAGS=	-O
9LIBC=	/lib/libc.a
10SRCS=	arc.c box.c circle.c close.c cont.c dot.c erase.c label.c \
11	line.c linemod.c move.c open.c point.c space.c subr.c
12OBJS=	arc.o box.o circle.o close.o cont.o dot.o erase.o label.o \
13	line.o linemod.o move.o open.o point.o space.o subr.o
14
15all: ../libplotgrn
16
17../libplotgrn: ${OBJS}
18	ar cu $@ ${OBJS}
19
20clean: FRC
21	rm -f ${OBJS} core
22
23depend: FRC
24	mkdep ${CFLAGS} ${SRCS}
25
26lint: FRC
27	lint ${CFLAGS} ${SRCS}
28
29tags: FRC
30	ctags ${SRCS}
31
32install:
33FRC:
34
35# DO NOT DELETE THIS LINE -- mkdep uses it.
36# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
37
38arc.o: arc.c grnplot.h /usr/include/stdio.h
39box.o: box.c
40circle.o: circle.c grnplot.h /usr/include/stdio.h
41close.o: close.c grnplot.h /usr/include/stdio.h
42cont.o: cont.c grnplot.h /usr/include/stdio.h
43dot.o: dot.c
44erase.o: erase.c grnplot.h /usr/include/stdio.h
45label.o: label.c grnplot.h /usr/include/stdio.h
46line.o: line.c grnplot.h /usr/include/stdio.h
47linemod.o: linemod.c grnplot.h /usr/include/stdio.h
48move.o: move.c grnplot.h /usr/include/stdio.h
49open.o: open.c grnplot.h /usr/include/stdio.h
50point.o: point.c grnplot.h /usr/include/stdio.h
51space.o: space.c grnplot.h /usr/include/stdio.h
52subr.o: subr.c grnplot.h /usr/include/stdio.h
53
54# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
55