mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 03:04:34 +01:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
25 lines
527 B
Makefile
25 lines
527 B
Makefile
# $NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
|
|
|
|
.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
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|