Remove support for Linux kernels older than 2.6.13
[madwifi/.git] / net80211 / Makefile.kernel
index b971497fa2a0b2cf5979cc8ddc1c8cbb5c14f081..839649b2ef30cae8039ef2791067824f7f8d0dd6 100644 (file)
@@ -8,25 +8,18 @@ srctree ?= .
 TOP = $(srctree)/$(src)/..
 
 include $(TOP)/BuildCaps.inc
-include $(TOP)/ath_hal/ah_target.inc
 
 COMPAT = $(TOP)/include
 
-ATH_HAL = $(TOP)/ath_hal
-HAL = $(TOP)/hal
+HAL = $(TOP)/ath_hal
 
 INCS = -include $(COMPAT)/compat.h -I$(COMPAT)
-INCS += -I$(TOP) -I$(ATH_HAL) -I$(HAL)
-EXTRA_CFLAGS += $(INCS) $(COPTS) -DOPT_AH_H=\"public/$(TARGET).opt_ah.h\"
+INCS += -I$(TOP) -I$(HAL)
+EXTRA_CFLAGS += $(INCS) $(COPTS)
 
 #
-# 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.
+# There is one authenticator mechanism: an in-kernel implementation
+# (wlan_xauth). 
 #
 MOD_AUTH       := wlan_xauth.o
 #
@@ -43,7 +36,7 @@ wlan-objs     := if_media.o \
                   ieee80211_crypto_none.o ieee80211_input.o ieee80211_node.o \
                   ieee80211_output.o ieee80211_proto.o ieee80211_power.o \
                   ieee80211_scan.o ieee80211_wireless.o ieee80211_linux.o \
-                  ieee80211_monitor.o ieee80211_rate.o
+                  ieee80211_monitor.o ieee80211_rate.o ieee80211_skb.o
 wlan_wep-objs  := ieee80211_crypto_wep.o
 wlan_tkip-objs := ieee80211_crypto_tkip.o
 wlan_ccmp-objs := ieee80211_crypto_ccmp.o
@@ -51,35 +44,3 @@ wlan_xauth-objs      := ieee80211_xauth.o
 wlan_acl-objs  := ieee80211_acl.o
 wlan_scan_sta-objs := ieee80211_scan_sta.o
 wlan_scan_ap-objs  := ieee80211_scan_ap.o
-
-ifeq ($(VERSION).$(PATCHLEVEL),2.4)
-export-objs    := if_media.o \
-                  ieee80211.o ieee80211_beacon.o ieee80211_crypto.o \
-                  ieee80211_crypto_none.o ieee80211_input.o ieee80211_node.o \
-                  ieee80211_output.o ieee80211_power.o ieee80211_proto.o \
-                  ieee80211_scan.o ieee80211_wireless.o ieee80211_linux.o \
-                  ieee80211_crypto_wep.o ieee80211_crypto_tkip.o \
-                  ieee80211_crypto_ccmp.o ieee80211_xauth.o ieee80211_rate.o
-list-multi     := wlan.o wlan_wep.o wlan_tkip.o wlan_ccmp.o wlan_acl.o \
-                  $(MOD_AUTH) $(MOD_SCAN)
-
-O_TARGET := net80211.o
-include $(TOPDIR)/Rules.make
-
-wlan.o:        $(wlan-objs)
-       $(LD) -o wlan.o -r $(wlan-objs)
-wlan_wep.o:    $(wlan_wep-objs)
-       $(LD) -o wlan_wep.o -r $(wlan_wep-objs)
-wlan_tkip.o:   $(wlan_tkip-objs)
-       $(LD) -o wlan_tkip.o -r $(wlan_tkip-objs)
-wlan_ccmp.o:   $(wlan_ccmp-objs)
-       $(LD) -o wlan_ccmp.o -r $(wlan_ccmp-objs)
-wlan_xauth.o:  $(wlan_xauth-objs)
-       $(LD) -o wlan_xauth.o -r $(wlan_xauth-objs)
-wlan_acl.o:    $(wlan_acl-objs)
-       $(LD) -o wlan_acl.o -r $(wlan_acl-objs)
-wlan_scan_sta.o: $(wlan_scan_sta-objs)
-       $(LD) -o wlan_scan_sta.o -r $(wlan_scan_sta-objs)
-wlan_scan_ap.o:        $(wlan_scan_ap-objs)
-       $(LD) -o wlan_scan_ap.o -r $(wlan_scan_ap-objs)
-endif