Makefile revision 185522
1116744Ssam#
2185522Ssam# Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3116744Ssam# All rights reserved.
4116744Ssam#
5116744Ssam# Redistribution and use in source and binary forms, with or without
6116744Ssam# modification, are permitted provided that the following conditions
7116744Ssam# are met:
8116744Ssam# 1. Redistributions of source code must retain the above copyright
9116744Ssam#    notice, this list of conditions and the following disclaimer,
10116744Ssam#    without modification.
11116744Ssam# 2. Redistributions in binary form must reproduce at minimum a disclaimer
12116744Ssam#    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13116744Ssam#    redistribution must be conditioned upon including a substantially
14116744Ssam#    similar Disclaimer requirement for further binary redistribution.
15116744Ssam#
16116744Ssam# NO WARRANTY
17116744Ssam# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18116744Ssam# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19116744Ssam# LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
20116744Ssam# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21116744Ssam# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22116744Ssam# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23116744Ssam# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24116744Ssam# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25116744Ssam# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26116744Ssam# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27116744Ssam# THE POSSIBILITY OF SUCH DAMAGES.
28116744Ssam#
29116744Ssam# $FreeBSD: head/sys/modules/ath/Makefile 185522 2008-12-01 16:53:01Z sam $
30116744Ssam#
31116744Ssam
32185522Ssam.PATH:	${.CURDIR}/../../dev/ath \
33185522Ssam	${.CURDIR}/../../dev/ath/ath_hal \
34185522Ssam	${.CURDIR}/../../dev/ath/ath_hal/ar5210 \
35185522Ssam	${.CURDIR}/../../dev/ath/ath_hal/ar5211 \
36185522Ssam	${.CURDIR}/../../dev/ath/ath_hal/ar5212 \
37185522Ssam	${.CURDIR}/../../dev/ath/ath_hal/ar5416
38116744Ssam
39185522SsamAR5210_SRCS=ah_eeprom_v1.c \
40185522Ssam	ar5210_attach.c ar5210_beacon.c ar5210_interrupts.c \
41185522Ssam	ar5210_keycache.c ar5210_misc.c ar5210_phy.c ar5210_power.c \
42185522Ssam	ar5210_recv.c ar5210_reset.c ar5210_xmit.c
43185522SsamAR5211_SRCS=ar5211_attach.c ar5211_beacon.c ar5211_interrupts.c \
44185522Ssam	ar5211_keycache.c ar5211_misc.c	ar5211_phy.c ar5211_power.c \
45185522Ssam	ar5211_recv.c ar5211_reset.c ar5211_xmit.c
46185522SsamAR5212_SRCS=ar5212_ani.c ar5212_attach.c ar5212_beacon.c ar5212_eeprom.c \
47185522Ssam	ar5212_gpio.c ar5212_interrupts.c ar5212_keycache.c ar5212_misc.c \
48185522Ssam	ar5212_phy.c ar5212_power.c ar5212_recv.c ar5212_reset.c \
49185522Ssam	ar5212_rfgain.c ar5212_xmit.c \
50185522Ssam	ar2413.c ar2425.c ar5111.c ar5112.c ar5413.c
51185522SsamAR5416_SRCS=ah_eeprom_v14.c \
52185522Ssam	ar5416_ani.c ar5416_attach.c ar5416_beacon.c ar5416_cal.c \
53185522Ssam	ar5416_cal_iq.c ar5416_cal_adcgain.c ar5416_cal_adcdc.c \
54185522Ssam	ar5416_eeprom.c ar5416_gpio.c ar5416_interrupts.c ar5416_keycache.c \
55185522Ssam	ar5416_misc.c ar5416_phy.c ar5416_power.c ar5416_recv.c \
56185522Ssam	ar5416_reset.c ar5416_xmit.c \
57185522Ssam	ar2133.c
58185522SsamAR9160_SRCS=ar9160_attach.c
59185522Ssam
60116744SsamKMOD=	if_ath
61116744SsamSRCS=	if_ath.c if_ath_pci.c
62185522Ssam# NB: v3 eeprom support used by both AR5211 and AR5212; just include it
63185522SsamSRCS+=	ah_osdep.c ah.c ah_regdomain.c ah_eeprom_v3.c
64185522SsamSRCS+=	${AR5210_SRCS}
65185522SsamSRCS+=	${AR5211_SRCS}
66185522SsamSRCS+=	${AR5212_SRCS}
67185522SsamSRCS+=	${AR5416_SRCS}
68185522SsamSRCS+=	${AR9160_SRCS}
69185522SsamSRCS+=	device_if.h bus_if.h pci_if.h opt_inet.h opt_route.h opt_ath.h opt_ah.h
70116744Ssam
71185522SsamCFLAGS+=  -I. -I${.CURDIR}/../../dev/ath -I${.CURDIR}/../../dev/ath/ath_hal
72116744Ssam
73185522Ssamopt_ah.h:
74185522Ssam	echo '#define AH_SUPPORT_AR5416 1' > $@
75157438Ssam
76116744Ssam.include <bsd.kmod.mk>
77