xref: /freebsd/tools/tools/ath/athani/Makefile (revision 2f513db7)
1# $FreeBSD$
2
3PROG=	athani
4MAN=
5
6CFLAGS+=	-I../../../../sys/contrib
7
8SRCS=	main.c
9
10.include <../Makefile.inc>
11
12CFLAGS+=	-I${.CURDIR}/../common/
13.PATH.c:	${.CURDIR}/../common/
14SRCS+=		ctrl.c
15
16CLEANFILES+=    opt_ah.h
17
18opt_ah.h:
19	echo "#define AH_DEBUG 1" > opt_ah.h
20	echo "#define AH_DEBUG_COUNTRY 1" >> opt_ah.h
21	echo "#define AH_SUPPORT_AR5416 1" >> opt_ah.h
22
23.include <bsd.prog.mk>
24