xref: /freebsd/tools/tools/ath/athrd/Makefile (revision 06c3fb27)
1
2.PATH:	${.CURDIR}/../../../../sys/dev/ath/ath_hal
3
4PROG=	athrd
5
6SRCS=	athrd.c ah_regdomain.c opt_ah.h
7
8CLEANFILES+=	opt_ah.h
9
10CFLAGS+= -fno-inline
11
12.include <../Makefile.inc>
13
14MAN=	athrd.1
15
16opt_ah.h:
17	echo "#define AH_DEBUG 1" > opt_ah.h
18	echo "#define AH_DEBUG_COUNTRY 1" >> opt_ah.h
19
20.include <bsd.prog.mk>
21