]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/modules/wlan/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sys / modules / wlan / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../net80211
4
5 KMOD=   wlan
6 SRCS=   ieee80211.c ieee80211_crypto.c ieee80211_crypto_none.c \
7         ieee80211_freebsd.c ieee80211_input.c ieee80211_ioctl.c \
8         ieee80211_node.c ieee80211_output.c ieee80211_power.c \
9         ieee80211_proto.c ieee80211_scan.c ieee80211_regdomain.c \
10         ieee80211_ht.c
11 SRCS+=  bus_if.h device_if.h opt_compat.h opt_inet.h opt_ipx.h
12
13 .if !defined(KERNBUILDDIR)
14 opt_compat.h:
15         echo "#define COMPAT_FREEBSD6 1" > ${.TARGET}
16
17 opt_inet.h:
18         echo "#define INET 1" > opt_inet.h
19
20 opt_ipx.h:
21         echo "#define IPX 1" > opt_ipx.h
22 .endif
23
24 .include <bsd.kmod.mk>