xref: /original-bsd/lib/libplot/t300/Makefile (revision afe6d20d)
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	4.4	(Berkeley)	06/19/87
7#
8CFLAGS=	-O
9LIBC=	/lib/libc.a
10SRCS=	arc.c box.c circle.c close.c dot.c erase.c label.c \
11	line.c linmod.c move.c open.c point.c space.c subr.c
12OBJS=	arc.o box.o circle.o close.o dot.o erase.o label.o \
13	line.o linmod.o move.o open.o point.o space.o subr.o
14
15all: ../lib300
16
17../lib300: ${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
39box.o: box.c
40circle.o: circle.c
41close.o: close.c /usr/include/stdio.h
42dot.o: dot.c
43erase.o: erase.c con.h /usr/include/sgtty.h /usr/include/sys/ioctl.h
44erase.o: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h
45label.o: label.c con.h /usr/include/sgtty.h /usr/include/sys/ioctl.h
46label.o: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h
47line.o: line.c con.h /usr/include/sgtty.h /usr/include/sys/ioctl.h
48line.o: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h
49linmod.o: linmod.c
50move.o: move.c
51open.o: open.c /usr/include/sgtty.h /usr/include/sys/ioctl.h
52open.o: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h
53point.o: point.c
54space.o: space.c con.h /usr/include/sgtty.h /usr/include/sys/ioctl.h
55space.o: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h
56subr.o: subr.c /usr/include/stdio.h con.h /usr/include/sgtty.h
57subr.o: /usr/include/sys/ioctl.h /usr/include/sys/ttychars.h
58subr.o: /usr/include/sys/ttydev.h
59
60# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
61