date and time created 87/02/05 15:19:17 by slatteng
[unix-history] / usr / src / usr.bin / patch / Makefile
CommitLineData
b675213c 1# @(#)Makefile 5.4 (Berkeley) %G%
f522cce1
KM
2#
3# $Header: Makefile,v 1.3 85/03/26 15:03:26 lwall Exp $
4
5BINDIR = $(DESTDIR)/usr/new
b675213c 6CFLAGS = -O
f522cce1
KM
7
8patch: patch.c
b675213c 9 cc patch.c $(CFLAGS) -o patch
f522cce1 10
42e01280 11install: patch
25558c6c 12 install -s patch $(BINDIR)
f522cce1
KM
13 install -c -m 444 patch.n ${DESTDIR}/usr/man/mann/patch.n
14
15clean:
25558c6c 16 rm -f patch patch.kit a.out core errs
f522cce1
KM
17
18shar:
19 shar patch.man patch.c Makefile >patch.kit
20
21lint:
22 lint -phbvxac patch.c