xref: /original-bsd/usr.bin/patch/Makefile (revision 0fc6f013)
1#	@(#)Makefile	5.3 (Berkeley) 03/29/86
2#
3# $Header: Makefile,v 1.3 85/03/26 15:03:26 lwall Exp $
4
5BINDIR = $(DESTDIR)/usr/new
6
7patch: patch.c
8	cc patch.c -O -o patch
9
10install: patch
11	install -s patch $(BINDIR)
12	install -c -m 444 patch.n ${DESTDIR}/usr/man/mann/patch.n
13
14clean:
15	rm -f patch patch.kit a.out core errs
16
17shar:
18	shar patch.man patch.c Makefile >patch.kit
19
20lint:
21	lint -phbvxac patch.c
22