ac2875fa16
Note: tcsh(1) has a MK_TCSH=no test, so this should be a separate package, which requires pre-install/post-install scripts, to be added later. Sponsored by: The FreeBSD Foundation
27 lines
537 B
Makefile
27 lines
537 B
Makefile
# $NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=runtime
|
|
PROG= pkill
|
|
|
|
LIBADD= kvm jail
|
|
|
|
LINKS= ${BINDIR}/pkill ${BINDIR}/pgrep
|
|
MLINKS= pkill.1 pgrep.1
|
|
|
|
#
|
|
# If considering retirement of these compatibility symlinks,
|
|
# keep in mind that pkill is installed to /usr/bin in other
|
|
# OS types, e.g., NetBSD, OpenBSD, Solaris, and Linux.
|
|
#
|
|
SYMLINKS= ${BINDIR}/pkill /usr/bin/pkill
|
|
SYMLINKS+= ${BINDIR}/pgrep /usr/bin/pgrep
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|