mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
0ddb37d879
straight from NetBSD (except to add the RCS-ID lines for FreeBSD). These will probably require a few updates before they are added to the FreeBSD buildworld. I might MFC these to 4.x-stable after 4.10. Discussed on: freebsd-arch Obtained from: NetBSD (and OpenBSD also has these)
15 lines
229 B
Makefile
15 lines
229 B
Makefile
# $NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
|
|
# $FreeBSD$
|
|
|
|
PROG= pkill
|
|
SRCS= pkill.c
|
|
MAN= pkill.1
|
|
|
|
LDADD+= -lkvm
|
|
DPADD+= ${LIBKVM}
|
|
|
|
LINKS+= ${BINDIR}/pkill ${BINDIR}/pgrep
|
|
MLINKS+=pkill.1 pgrep.1
|
|
|
|
.include <bsd.prog.mk>
|