mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 10:23:44 +02:00
c4d1d77a75
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2791 3c298f89-4303-0410-b956-a3cf2f4a3e73
24 lines
374 B
Makefile
24 lines
374 B
Makefile
obj-$(CONFIG_IEEE80211) += 80211.o rate_control.o
|
|
|
|
80211-objs := \
|
|
ieee80211.o \
|
|
ieee80211_ioctl.o \
|
|
sta_info.o \
|
|
wep.o \
|
|
wpa.o \
|
|
ieee80211_proc.o \
|
|
ieee80211_scan.o \
|
|
ieee80211_sta.o \
|
|
michael.o \
|
|
tkip.o \
|
|
aes_ccm.o \
|
|
wme.o
|
|
|
|
ifeq ($(CONFIG_NET_SCHED),)
|
|
80211-objs += fifo_qdisc.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_IEEE80211_LEDS),y)
|
|
80211-objs += ieee80211_led.o
|
|
endif
|