fe28962804
arp(8) uses RTM that requires that getpid(2) works correctly. Unfortunately supporting getpid(2) in librumphijack will be tricky so that we rump-ify arp(8) as well as ifconfig and route commands. Suggested by pooka@.
16 lines
317 B
Makefile
16 lines
317 B
Makefile
# $NetBSD: Makefile,v 1.12 2015/07/29 06:07:35 ozaki-r Exp $
|
|
# from: @(#)Makefile 8.2 (Berkeley) 4/18/94
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
RUMPPRG= arp
|
|
MAN= arp.4 arp.8
|
|
|
|
.PATH: ${.CURDIR}/../../lib/libc/net
|
|
RUMPSRCS= getifaddrs.c getnameinfo.c
|
|
.if (${MKRUMP} != "no")
|
|
CPPFLAGS+= -DRUMP_ACTION
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|