xref: /freebsd/bin/pkill/Makefile (revision a0ee8cc6)
1#	$NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6PROG=	pkill
7
8LIBADD=	kvm jail
9
10LINKS=	${BINDIR}/pkill ${BINDIR}/pgrep
11MLINKS=	pkill.1 pgrep.1
12
13#
14# If considering retirement of these compatibility symlinks,
15# keep in mind that pkill is installed to /usr/bin in other
16# OS types, e.g., NetBSD, OpenBSD, Solaris, and Linux.
17#
18SYMLINKS=	${BINDIR}/pkill /usr/bin/pkill
19SYMLINKS+=	${BINDIR}/pgrep /usr/bin/pgrep
20
21.if ${MK_TESTS} != "no"
22SUBDIR+= tests
23.endif
24
25.include <bsd.prog.mk>
26