Makefile 573 B

123456789101112131415161718192021222324252627
  1. obj-$(CONFIG_MAC80211) += mac80211.o
  2. mac80211-objs-$(CONFIG_MAC80211_LEDS) += ieee80211_led.o
  3. mac80211-objs-$(CONFIG_MAC80211_DEBUGFS) += debugfs.o debugfs_sta.o debugfs_netdev.o debugfs_key.o
  4. mac80211-objs-$(CONFIG_NET_SCHED) += wme.o
  5. mac80211-objs-$(CONFIG_MAC80211_RCSIMPLE) += rc80211_simple.o
  6. mac80211-objs := \
  7. ieee80211.o \
  8. ieee80211_ioctl.o \
  9. sta_info.o \
  10. wep.o \
  11. wpa.o \
  12. ieee80211_sta.o \
  13. ieee80211_iface.o \
  14. ieee80211_rate.o \
  15. michael.o \
  16. regdomain.o \
  17. tkip.o \
  18. aes_ccm.o \
  19. cfg.o \
  20. rx.o \
  21. tx.o \
  22. key.o \
  23. util.o \
  24. event.o \
  25. $(mac80211-objs-y)