xref: /freebsd/usr.sbin/wlanstat/Makefile (revision 89eee8ee2ce57b7884defb8f9af016cd28ef1562)
1.include <bsd.compiler.mk>
2
3PROG=	wlanstat
4MAN=	wlanstat.8
5
6CFLAGS=	-I${SRCTOP}/lib/libbsdstat
7LIBADD=	bsdstat
8
9SRCS=	main.c \
10	wlanstat.c
11
12CFLAGS.clang+= -fbracket-depth=512 -Wno-cast-align
13
14.include <bsd.prog.mk>
15