Deleted Added
full compact
Makefile (222325) Makefile (222585)
1#
2# Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8# 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27# THE POSSIBILITY OF SUCH DAMAGES.
28#
1#
2# Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8# 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27# THE POSSIBILITY OF SUCH DAMAGES.
28#
29# $FreeBSD: head/sys/modules/ath/Makefile 222325 2011-05-26 20:31:08Z adrian $
29# $FreeBSD: head/sys/modules/ath/Makefile 222585 2011-06-01 20:09:49Z adrian $
30#
31
32ATH_RATE?= sample # tx rate control algorithm
33
34.PATH: ${.CURDIR}/../../dev/ath
35.PATH: ${.CURDIR}/../../dev/ath/ath_hal
36
37KMOD= if_ath

--- 91 unchanged lines hidden (view full) ---

129.elif ${ATH_RATE} == "onoe"
130.PATH: ${.CURDIR}/../../dev/ath/ath_rate/onoe
131SRCS+= onoe.c
132.elif ${ATH_RATE} == "amrr"
133.PATH: ${.CURDIR}/../../dev/ath/ath_rate/amrr
134SRCS+= amrr.c
135.endif
136
30#
31
32ATH_RATE?= sample # tx rate control algorithm
33
34.PATH: ${.CURDIR}/../../dev/ath
35.PATH: ${.CURDIR}/../../dev/ath/ath_hal
36
37KMOD= if_ath

--- 91 unchanged lines hidden (view full) ---

129.elif ${ATH_RATE} == "onoe"
130.PATH: ${.CURDIR}/../../dev/ath/ath_rate/onoe
131SRCS+= onoe.c
132.elif ${ATH_RATE} == "amrr"
133.PATH: ${.CURDIR}/../../dev/ath/ath_rate/amrr
134SRCS+= amrr.c
135.endif
136
137# DFS
138.PATH: ${.CURDIR}/../../dev/ath/ath_dfs/null
139SRCS+= dfs_null.c
140
137CFLAGS+= -I. -I${.CURDIR}/../../dev/ath -I${.CURDIR}/../../dev/ath/ath_hal
138
139opt_ah.h:
140 echo '#define AH_SUPPORT_AR5416 1' > $@
141
142.include <bsd.kmod.mk>
141CFLAGS+= -I. -I${.CURDIR}/../../dev/ath -I${.CURDIR}/../../dev/ath/ath_hal
142
143opt_ah.h:
144 echo '#define AH_SUPPORT_AR5416 1' > $@
145
146.include <bsd.kmod.mk>