Makefile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. obj-$(CONFIG_MAC80211) += mac80211.o
  2. # mac80211 objects
  3. mac80211-y := \
  4. main.o status.o \
  5. driver-ops.o \
  6. sta_info.o \
  7. wep.o \
  8. wpa.o \
  9. scan.o offchannel.o \
  10. ht.o agg-tx.o agg-rx.o \
  11. vht.o \
  12. ibss.o \
  13. iface.o \
  14. rate.o \
  15. michael.o \
  16. tkip.o \
  17. aes_ccm.o \
  18. aes_gcm.o \
  19. aes_cmac.o \
  20. aes_gmac.o \
  21. cfg.o \
  22. ethtool.o \
  23. rx.o \
  24. spectmgmt.o \
  25. tx.o \
  26. key.o \
  27. util.o \
  28. wme.o \
  29. chan.o \
  30. trace.o mlme.o \
  31. tdls.o \
  32. ocb.o
  33. mac80211-$(CONFIG_MAC80211_LEDS) += led.o
  34. mac80211-$(CONFIG_MAC80211_DEBUGFS) += \
  35. debugfs.o \
  36. debugfs_sta.o \
  37. debugfs_netdev.o \
  38. debugfs_key.o
  39. mac80211-$(CONFIG_MAC80211_MESH) += \
  40. mesh.o \
  41. mesh_pathtbl.o \
  42. mesh_plink.o \
  43. mesh_hwmp.o \
  44. mesh_sync.o \
  45. mesh_ps.o
  46. mac80211-$(CONFIG_PM) += pm.o
  47. CFLAGS_trace.o := -I$(src)
  48. rc80211_minstrel-y := rc80211_minstrel.o
  49. rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o
  50. rc80211_minstrel_ht-y := rc80211_minstrel_ht.o
  51. rc80211_minstrel_ht-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_ht_debugfs.o
  52. mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y)
  53. mac80211-$(CONFIG_MAC80211_RC_MINSTREL_HT) += $(rc80211_minstrel_ht-y)
  54. ccflags-y += -D__CHECK_ENDIAN__ -DDEBUG