Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. obj-$(CONFIG_MAC80211) += mac80211.o
  2. # mac80211 objects
  3. mac80211-y := \
  4. main.o status.o \
  5. sta_info.o \
  6. wep.o \
  7. wpa.o \
  8. scan.o offchannel.o \
  9. ht.o agg-tx.o agg-rx.o \
  10. vht.o \
  11. ibss.o \
  12. iface.o \
  13. rate.o \
  14. michael.o \
  15. tkip.o \
  16. aes_ccm.o \
  17. aes_gcm.o \
  18. aes_cmac.o \
  19. aes_gmac.o \
  20. cfg.o \
  21. ethtool.o \
  22. rx.o \
  23. spectmgmt.o \
  24. tx.o \
  25. key.o \
  26. util.o \
  27. wme.o \
  28. event.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