aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/arp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/arp/Makefile')
-rw-r--r--usr.sbin/arp/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/usr.sbin/arp/Makefile b/usr.sbin/arp/Makefile
new file mode 100644
index 000000000000..7b6911f8e0f4
--- /dev/null
+++ b/usr.sbin/arp/Makefile
@@ -0,0 +1,19 @@
+.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>