Makefile revision 116744
1116744Ssam#
2116744Ssam# Copyright (c) 2002, 2003 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# 3. Neither the names of the above-listed copyright holders nor the names
16116744Ssam#    of any contributors may be used to endorse or promote products derived
17116744Ssam#    from this software without specific prior written permission.
18116744Ssam#
19116744Ssam# Alternatively, this software may be distributed under the terms of the
20116744Ssam# GNU General Public License ("GPL") version 2 as published by the Free
21116744Ssam# Software Foundation.
22116744Ssam#
23116744Ssam# NO WARRANTY
24116744Ssam# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25116744Ssam# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26116744Ssam# LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
27116744Ssam# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
28116744Ssam# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
29116744Ssam# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30116744Ssam# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31116744Ssam# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
32116744Ssam# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33116744Ssam# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
34116744Ssam# THE POSSIBILITY OF SUCH DAMAGES.
35116744Ssam#
36116744Ssam# $FreeBSD: head/sys/modules/ath/Makefile 116744 2003-06-23 17:02:43Z sam $
37116744Ssam#
38116744Ssam
39116744Ssam.PATH: ${.CURDIR}/../../dev/ath
40116744Ssam
41116744SsamKMOD=	if_ath
42116744SsamSRCS=	if_ath.c if_ath_pci.c
43116744SsamSRCS+=	opt_bdg.h device_if.h bus_if.h pci_if.h opt_inet.h
44116744Ssam
45116744SsamHAL=	${.CURDIR}/../../contrib/dev/ath
46116744SsamCFLAGS+=  -I. -I${HAL}/freebsd -I${HAL}
47116744Ssam
48116744Ssam.include <bsd.kmod.mk>
49