]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - usr.bin/pkill/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / usr.bin / pkill / Makefile
1 #       $NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
2 # $FreeBSD$
3
4 BINDIR= /bin
5
6 PROG=   pkill
7 WARNS?= 5
8
9 DPADD=  ${LIBKVM}
10 LDADD=  -lkvm
11
12 LINKS=  ${BINDIR}/pkill ${BINDIR}/pgrep
13 MLINKS= pkill.1 pgrep.1
14
15 #
16 # If considering retirement of these compatibility symlinks,
17 # keep in mind that pkill is installed to /usr/bin in other
18 # OS types, e.g., NetBSD, OpenBSD, Solaris, and Linux.
19 #
20 SYMLINKS=       ${BINDIR}/pkill /usr/bin/pkill
21 SYMLINKS+=      ${BINDIR}/pgrep /usr/bin/pgrep
22
23 .include <bsd.prog.mk>