diff options
| author | ad <ad@NetBSD.org> | 2002-03-01 11:21:58 +0000 |
|---|---|---|
| committer | ad <ad@NetBSD.org> | 2002-03-01 11:21:58 +0000 |
| commit | 3b8a0d4f4f61931e616005151679110a605fb3a3 (patch) | |
| tree | 109afb0665f8021c914e3adb437453870db4f89e /usr.bin/pkill/Makefile | |
| parent | ba6fe47ae9911c53426c9262f3d63ec052b0e78f (diff) | |
pgrep and pkill: search the process table for processes with a particular
set of characteristics, and either print or signal the matching set. Mostly
compatible with the Solaris commands of the same name.
Diffstat (limited to 'usr.bin/pkill/Makefile')
| -rw-r--r-- | usr.bin/pkill/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/usr.bin/pkill/Makefile b/usr.bin/pkill/Makefile new file mode 100644 index 00000000000..1b4fc23fa50 --- /dev/null +++ b/usr.bin/pkill/Makefile @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $ + +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> |
