Makefile revision 161463
1#	$NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
2# $FreeBSD: head/usr.bin/pkill/Makefile 161463 2006-08-20 04:25:20Z yar $
3
4BINDIR=	/bin
5
6PROG=	pkill
7WARNS?=	5
8
9DPADD=	${LIBKVM}
10LDADD=	-lkvm
11
12LINKS=	${BINDIR}/pkill ${BINDIR}/pgrep
13MLINKS=	pkill.1 pgrep.1
14
15#
16# If considering retirement of these compatibility symlinks,
17# keep in mind that pkill is installed to /usr/bin in other
18# OS types, e.g., NetBSD, OpenBSD, Solaris, and Linux.
19#
20SYMLINKS=	${BINDIR}/pkill /usr/bin/pkill
21SYMLINKS+=	${BINDIR}/pgrep /usr/bin/pgrep
22
23.include <bsd.prog.mk>
24