xref: /freebsd/bin/pkill/Makefile (revision d0b2dbfa)
1#	$NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
2
3.include <src.opts.mk>
4
5PACKAGE=runtime
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
21HAS_TESTS=
22SUBDIR.${MK_TESTS}+= tests
23
24.include <bsd.prog.mk>
25