xref: /csrg-svn/lib/libplot/bitgraph/Makefile (revision 31635)
1*31635Sbostic#
2*31635Sbostic# Copyright (c) 1987 Regents of the University of California.
319853Sdist# All rights reserved.  The Berkeley software License Agreement
419853Sdist# specifies the terms and conditions for redistribution.
515408Sralph#
6*31635Sbostic#	@(#)Makefile	5.2	(Berkeley)	06/19/87
719853Sdist#
815408SralphCFLAGS=	-O
9*31635SbosticLIBC=	/lib/libc.a
10*31635SbosticSRCS=	box.c circle.c arc.c cont.c dot.c erase.c line.c linemod.c point.c \
11*31635Sbostic	label.c move.c open.c close.c space.c
1215501SralphOBJS=	box.o circle.o arc.o cont.o dot.o erase.o line.o linemod.o point.o \
1315424Sralph	label.o move.o open.o close.o space.o
1415408Sralph
15*31635Sbosticall: ../libplotbg
1615408Sralph
17*31635Sbostic../libplotbg: ${OBJS}
18*31635Sbostic	ar cu $@ ${OBJS}
1915408Sralph
20*31635Sbosticclean: FRC
21*31635Sbostic	rm -f ${OBJS} core
22*31635Sbostic
23*31635Sbosticdepend: FRC
24*31635Sbostic	mkdep ${CFLAGS} ${SRCS}
25*31635Sbostic
26*31635Sbosticlint: FRC
27*31635Sbostic	lint ${CFLAGS} ${SRCS}
28*31635Sbostic
29*31635Sbostictags: FRC
30*31635Sbostic	ctags ${SRCS}
31*31635Sbostic
32*31635Sbosticinstall:
33*31635SbosticFRC:
34*31635Sbostic
35*31635Sbostic# DO NOT DELETE THIS LINE -- mkdep uses it.
36*31635Sbostic# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
37*31635Sbostic
38*31635Sbosticbox.o: box.c
39*31635Sbosticcircle.o: circle.c
40*31635Sbosticarc.o: arc.c bg.h /usr/include/stdio.h /usr/include/math.h
41*31635Sbosticcont.o: cont.c bg.h /usr/include/stdio.h /usr/include/math.h
42*31635Sbosticdot.o: dot.c
43*31635Sbosticerase.o: erase.c bg.h /usr/include/stdio.h /usr/include/math.h
44*31635Sbosticline.o: line.c bg.h /usr/include/stdio.h /usr/include/math.h
45*31635Sbosticlinemod.o: linemod.c
46*31635Sbosticpoint.o: point.c
47*31635Sbosticlabel.o: label.c
48*31635Sbosticmove.o: move.c bg.h /usr/include/stdio.h /usr/include/math.h
49*31635Sbosticopen.o: open.c /usr/include/signal.h bg.h /usr/include/stdio.h
50*31635Sbosticopen.o: /usr/include/math.h
51*31635Sbosticclose.o: close.c /usr/include/signal.h bg.h /usr/include/stdio.h
52*31635Sbosticclose.o: /usr/include/math.h
53*31635Sbosticspace.o: space.c bg.h /usr/include/stdio.h /usr/include/math.h
54*31635Sbostic
55*31635Sbostic# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
56