Makefile revision 287313
1# $FreeBSD: head/tools/tools/iwn/iwnstats/Makefile 287313 2015-08-30 21:54:47Z adrian $
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
12CFLAGS+=	-g -ggdb -O0
13
14PROG=	iwnstats
15
16# Because of a clang preprocessor parser limitation causing this
17# to not compile, use gcc for now.
18#CC=	gcc
19
20SRCS=	main.c iwn_ioctl.c
21
22# CFLAGS.clang+= -fbracket-depth=512
23
24.include <bsd.prog.mk>
25