Makefile revision 264996
12390SN/A#	$NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
22390SN/A# $FreeBSD: stable/10/bin/pkill/Makefile 264996 2014-04-27 01:15:10Z jmmv $
32390SN/A
42390SN/A.include <bsd.own.mk>
52390SN/A
62390SN/APROG=	pkill
72390SN/A
82390SN/ADPADD=	${LIBKVM}
92390SN/ALDADD=	-lkvm
102390SN/A
112390SN/ALINKS=	${BINDIR}/pkill ${BINDIR}/pgrep
122390SN/AMLINKS=	pkill.1 pgrep.1
132390SN/A
142390SN/A#
152390SN/A# If considering retirement of these compatibility symlinks,
162390SN/A# keep in mind that pkill is installed to /usr/bin in other
172390SN/A# OS types, e.g., NetBSD, OpenBSD, Solaris, and Linux.
182390SN/A#
192390SN/ASYMLINKS=	${BINDIR}/pkill /usr/bin/pkill
202390SN/ASYMLINKS+=	${BINDIR}/pgrep /usr/bin/pgrep
212390SN/A
222390SN/A.if ${MK_TESTS} != "no"
232390SN/ASUBDIR+= tests
242390SN/A.endif
252390SN/A
262390SN/A.include <bsd.prog.mk>
272390SN/A