blob: 179fe70e3fb883eb7ef11d77b615224fa921cb8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#
# This builds network tools.
#
# $FreeBSD$
#
CRUNCH_PROGS_sbin+= route ping
CRUNCH_PROGS_usr.sbin+= arp
# inetd
CRUNCH_PROGS_usr.sbin+= inetd
CRUNCH_LIBS+= -lwrap
#.if ${MK_INET6_SUPPORT} != "no"
#CRUNCH_PROGS_sbin+= ping6
#.endif
# netstat
CRUNCH_PROGS_usr.bin+= netstat
CRUNCH_LIBS+= -lmemstat -lnetgraph
# ifconfig
CRUNCH_PROGS_sbin+= ifconfig
# wlan stuff
CRUNCH_PROGS_usr.sbin+= wlandebug
# tcpdump
CRUNCH_PROGS_usr.sbin+= tcpdump
# CRUNCH_LIBS+= -lpcap -lcrypto
|