xref: /freebsd/bin/pkill/Makefile (revision 640235e2c2ba32947f7c59d168437ffa1280f1e6)
1#	$NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6PACKAGE=runtime
7PROG=	pkill
8
9LIBADD=	kvm jail
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