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