mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
19 lines
207 B
Makefile
19 lines
207 B
Makefile
.include <src.opts.mk>
|
|
|
|
PROG= arp
|
|
MAN= arp.4 arp.8
|
|
|
|
|
|
SRCS= arp.c
|
|
|
|
.if ${MK_NETLINK_SUPPORT} != "no"
|
|
SRCS+= arp_netlink.c
|
|
.else
|
|
CFLAGS+=-DWITHOUT_NETLINK
|
|
.endif
|
|
|
|
LIBADD= xo
|
|
|
|
WARNS?= 3
|
|
|
|
.include <bsd.prog.mk>
|