mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-09 13:10:15 +02:00
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
|