# # Makefile for the 802.11 NET80211 module. # ##2.4##src=. ##2.4##COMPAT= compat ##2.6##COMPAT= drivers/net/wireless/net80211/compat EXTRA_CFLAGS+= -include ${COMPAT}/compat.h -I${COMPAT} -I${src}/.. # # There are two authenticator mechanisms: an in-kernel implementation # (wlan_auth+wlan_radius) and an external implementation (wlan_xauth) that # requires a user process to manage the authentication process. By default # the external authenticator is used. ieee80211_proto.c has a table of module # names that defines the default module to auto-load for each authentication # scheme; to get the in-kernel authenticator by default modify it to load # wlan_auth instead of wlan_xauth or manually load wlan_auth prior to use. # MOD_AUTH := wlan_xauth.o obj-$(CONFIG_NET80211) += wlan.o wlan_wep.o wlan_tkip.o wlan_ccmp.o \ $(MOD_AUTH) wlan_acl.o wlan-objs := if_media.o rc4.o \ ieee80211.o ieee80211_crypto.o ieee80211_input.o \ ieee80211_node.o ieee80211_output.o ieee80211_proto.o \ ieee80211_wireless.o ieee80211_linux.o \ ieee80211_crypto_none.o wlan_wep-objs := ieee80211_crypto_wep.o wlan_tkip-objs := ieee80211_crypto_tkip.o wlan_ccmp-objs := ieee80211_crypto_ccmp.o wlan_xauth-objs := ieee80211_xauth.o wlan_auth-objs := ieee80211_dot1x.o wlan_radius-objs:= ieee80211_radius.o wlan_acl-objs := ieee80211_acl.o ##2.4##export-objs := if_media.o rc4.o \ ##2.4## ieee80211.o ieee80211_crypto.o ieee80211_input.o \ ##2.4## ieee80211_node.o ieee80211_output.o ieee80211_proto.o \ ##2.4## ieee80211_wireless.o ieee80211_linux.o \ ##2.4## ieee80211_crypto_none.o ieee80211_crypto_wep.o \ ##2.4## ieee80211_crypto_tkip.o ieee80211_crypto_ccmp.o \ ##2.4## ieee80211_dot1x.o ieee80211_radius.o ieee80211_xauth.o ##2.4##list-multi := wlan.o wlan_wep.o wlan_tkip.o wlan_ccmp.o \ ##2.4## $(MOD_AUTH) wlan_acl.o ##2.4##O_TARGET := net80211.o ##2.4##include $(TOPDIR)/Rules.make ##2.4##wlan.o: $(wlan-objs) ##2.4## $(LD) -o wlan.o -r $(wlan-objs) ##2.4##wlan_wep.o: $(wlan_wep-objs) ##2.4## $(LD) -o wlan_wep.o -r $(wlan_wep-objs) ##2.4##wlan_tkip.o: $(wlan_tkip-objs) ##2.4## $(LD) -o wlan_tkip.o -r $(wlan_tkip-objs) ##2.4##wlan_ccmp.o: $(wlan_ccmp-objs) ##2.4## $(LD) -o wlan_ccmp.o -r $(wlan_ccmp-objs) ##2.4##wlan_xauth.o: $(wlan_xauth-objs) ##2.4## $(LD) -o wlan_xauth.o -r $(wlan_xauth-objs) ##2.4##wlan_auth.o: $(wlan_auth-objs) ##2.4## $(LD) -o wlan_auth.o -r $(wlan_auth-objs) ##2.4##wlan_radius.o: $(wlan_radius-objs) ##2.4## $(LD) -o wlan_radius.o -r $(wlan_radius-objs) ##2.4##wlan_acl.o: $(wlan_acl-objs) ##2.4## $(LD) -o wlan_acl.o -r $(wlan_acl-objs)