freebsd-dev/usr.bin/pkill/Makefile
Garance A Drosehn eb6d801134 Add a cast to get this to compile with WARNS=5 on sparc64. This is
needed because off_t == __int64_t, while size_t == __uint64_t.  This
also compiles with WARNS=5 on amd64, but I haven't tested the other
platforms yet.
2004-03-26 00:36:27 +00:00

19 lines
269 B
Makefile

# $NetBSD: Makefile,v 1.1 2002/03/01 11:21:58 ad Exp $
# $FreeBSD$
PROG= pkill
SRCS= pkill.c
MAN= pkill.1
WARNS?= 5
LDADD+= -lkvm
DPADD+= ${LIBKVM}
#BINGRP= kmem
#BINMODE= 2555
LINKS+= ${BINDIR}/pkill ${BINDIR}/pgrep
MLINKS+=pkill.1 pgrep.1
.include <bsd.prog.mk>