xref: /dragonfly/tools/tools/ath/athrd/Makefile (revision cfd1aba3)
1# $FreeBSD: src/tools/tools/ath/athrd/Makefile,v 1.1 2009/01/15 23:38:21 sam Exp $
2
3.PATH:	${.CURDIR}/../../../../sys/dev/netif/ath/ath_hal
4
5PROG=	athrd
6
7SRCS=	athrd.c ah_regdomain.c opt_ah.h
8
9CLEANFILES+=	opt_ah.h
10
11CFLAGS+= -fno-inline
12
13.include <../Makefile.inc>
14
15MAN=	athrd.1
16
17opt_ah.h:
18	echo "#define AH_DEBUG 1" > opt_ah.h
19	echo "#define AH_DEBUG_COUNTRY 1" >> opt_ah.h
20
21.include <bsd.prog.mk>
22