Deleted Added
full compact
Makefile (185522) Makefile (185571)
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 185522 2008-12-01 16:53:01Z sam $
29# $FreeBSD: head/sys/modules/ath/Makefile 185571 2008-12-02 21:37:28Z bz $
30#
31
32.PATH: ${.CURDIR}/../../dev/ath \
33 ${.CURDIR}/../../dev/ath/ath_hal \
34 ${.CURDIR}/../../dev/ath/ath_hal/ar5210 \
35 ${.CURDIR}/../../dev/ath/ath_hal/ar5211 \
36 ${.CURDIR}/../../dev/ath/ath_hal/ar5212 \
37 ${.CURDIR}/../../dev/ath/ath_hal/ar5416

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

61SRCS= if_ath.c if_ath_pci.c
62# NB: v3 eeprom support used by both AR5211 and AR5212; just include it
63SRCS+= ah_osdep.c ah.c ah_regdomain.c ah_eeprom_v3.c
64SRCS+= ${AR5210_SRCS}
65SRCS+= ${AR5211_SRCS}
66SRCS+= ${AR5212_SRCS}
67SRCS+= ${AR5416_SRCS}
68SRCS+= ${AR9160_SRCS}
30#
31
32.PATH: ${.CURDIR}/../../dev/ath \
33 ${.CURDIR}/../../dev/ath/ath_hal \
34 ${.CURDIR}/../../dev/ath/ath_hal/ar5210 \
35 ${.CURDIR}/../../dev/ath/ath_hal/ar5211 \
36 ${.CURDIR}/../../dev/ath/ath_hal/ar5212 \
37 ${.CURDIR}/../../dev/ath/ath_hal/ar5416

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

61SRCS= if_ath.c if_ath_pci.c
62# NB: v3 eeprom support used by both AR5211 and AR5212; just include it
63SRCS+= ah_osdep.c ah.c ah_regdomain.c ah_eeprom_v3.c
64SRCS+= ${AR5210_SRCS}
65SRCS+= ${AR5211_SRCS}
66SRCS+= ${AR5212_SRCS}
67SRCS+= ${AR5416_SRCS}
68SRCS+= ${AR9160_SRCS}
69SRCS+= device_if.h bus_if.h pci_if.h opt_inet.h opt_route.h opt_ath.h opt_ah.h
69SRCS+= device_if.h bus_if.h pci_if.h opt_inet.h opt_ath.h opt_ah.h
70
71CFLAGS+= -I. -I${.CURDIR}/../../dev/ath -I${.CURDIR}/../../dev/ath/ath_hal
72
73opt_ah.h:
74 echo '#define AH_SUPPORT_AR5416 1' > $@
75
76.include <bsd.kmod.mk>
70
71CFLAGS+= -I. -I${.CURDIR}/../../dev/ath -I${.CURDIR}/../../dev/ath/ath_hal
72
73opt_ah.h:
74 echo '#define AH_SUPPORT_AR5416 1' > $@
75
76.include <bsd.kmod.mk>