]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - bin/pkill/Makefile
MFC r287012:
[FreeBSD/stable/10.git] / bin / pkill / Makefile
1 #       $NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 PROG=   pkill
7
8 DPADD=  ${LIBKVM} ${LIBJAIL}
9 LDADD=  -lkvm -ljail
10
11 LINKS=  ${BINDIR}/pkill ${BINDIR}/pgrep
12 MLINKS= 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 #
19 SYMLINKS=       ${BINDIR}/pkill /usr/bin/pkill
20 SYMLINKS+=      ${BINDIR}/pgrep /usr/bin/pgrep
21
22 .if ${MK_TESTS} != "no"
23 SUBDIR+= tests
24 .endif
25
26 .include <bsd.prog.mk>