eb6d801134
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.
19 lines
269 B
Makefile
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>
|