1# $FreeBSD$
2
3MAN=
4
5.include <bsd.own.mk>
6
7.PATH:	${.CURDIR}/../../../../sys/dev/iwn/
8
9CFLAGS+=-I${.CURDIR}/../../../../sys/dev/iwn/
10CFLAGS+=-I${.CURDIR}/../../../../sys/
11
12PROG=	iwnstats
13
14# Because of a clang preprocessor parser limitation causing this
15# to not compile, use gcc for now.
16#CC=	gcc
17
18SRCS=	main.c iwn_ioctl.c
19
20# CFLAGS.clang+= -fbracket-depth=512
21
22.include <bsd.prog.mk>
23