Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. fils_aead.o \
  22. cfg.o \
  23. ethtool.o \
  24. rx.o \
  25. spectmgmt.o \
  26. tx.o \
  27. key.o \
  28. util.o \
  29. wme.o \
  30. chan.o \
  31. trace.o mlme.o \
  32. tdls.o \
  33. ocb.o
  34. mac80211-$(CONFIG_MAC80211_LEDS) += led.o
  35. mac80211-$(CONFIG_MAC80211_DEBUGFS) += \
  36. debugfs.o \
  37. debugfs_sta.o \
  38. debugfs_netdev.o \
  39. debugfs_key.o
  40. mac80211-$(CONFIG_MAC80211_MESH) += \
  41. mesh.o \
  42. mesh_pathtbl.o \
  43. mesh_plink.o \
  44. mesh_hwmp.o \
  45. mesh_sync.o \
  46. mesh_ps.o
  47. mac80211-$(CONFIG_PM) += pm.o
  48. CFLAGS_trace.o := -I$(src)
  49. rc80211_minstrel-y := rc80211_minstrel.o
  50. rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o
  51. rc80211_minstrel_ht-y := rc80211_minstrel_ht.o
  52. rc80211_minstrel_ht-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_ht_debugfs.o
  53. mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y)
  54. mac80211-$(CONFIG_MAC80211_RC_MINSTREL_HT) += $(rc80211_minstrel_ht-y)
  55. ccflags-y += -DDEBUG