Makefile revision 287269
1#	$NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
2# $FreeBSD: stable/10/bin/pkill/Makefile 287269 2015-08-29 02:41:59Z jamie $
3
4.include <bsd.own.mk>
5
6PROG=	pkill
7
8DPADD=	${LIBKVM} ${LIBJAIL}
9LDADD=	-lkvm -ljail
10
11LINKS=	${BINDIR}/pkill ${BINDIR}/pgrep
12MLINKS=	pkill.1 pgrep.1
13
14#
15# If considering retirement of these compatibility symlinks,
16# keep in mind that pkill is installed to /usr/bin in other
17# OS types, e.g., NetBSD, OpenBSD, Solaris, and Linux.
18#
19SYMLINKS=	${BINDIR}/pkill /usr/bin/pkill
20SYMLINKS+=	${BINDIR}/pgrep /usr/bin/pgrep
21
22.if ${MK_TESTS} != "no"
23SUBDIR+= tests
24.endif
25
26.include <bsd.prog.mk>
27