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