Makefile 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. ibss.o \
  11. work.o \
  12. iface.o \
  13. rate.o \
  14. michael.o \
  15. tkip.o \
  16. aes_ccm.o \
  17. aes_cmac.o \
  18. cfg.o \
  19. rx.o \
  20. spectmgmt.o \
  21. tx.o \
  22. key.o \
  23. util.o \
  24. wme.o \
  25. event.o \
  26. chan.o \
  27. driver-trace.o mlme.o
  28. mac80211-$(CONFIG_MAC80211_LEDS) += led.o
  29. mac80211-$(CONFIG_MAC80211_DEBUGFS) += \
  30. debugfs.o \
  31. debugfs_sta.o \
  32. debugfs_netdev.o \
  33. debugfs_key.o
  34. mac80211-$(CONFIG_MAC80211_MESH) += \
  35. mesh.o \
  36. mesh_pathtbl.o \
  37. mesh_plink.o \
  38. mesh_hwmp.o
  39. mac80211-$(CONFIG_PM) += pm.o
  40. CFLAGS_driver-trace.o := -I$(src)
  41. # objects for PID algorithm
  42. rc80211_pid-y := rc80211_pid_algo.o
  43. rc80211_pid-$(CONFIG_MAC80211_DEBUGFS) += rc80211_pid_debugfs.o
  44. rc80211_minstrel-y := rc80211_minstrel.o
  45. rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o
  46. rc80211_minstrel_ht-y := rc80211_minstrel_ht.o
  47. rc80211_minstrel_ht-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_ht_debugfs.o
  48. mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc80211_pid-y)
  49. mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y)
  50. mac80211-$(CONFIG_MAC80211_RC_MINSTREL_HT) += $(rc80211_minstrel_ht-y)
  51. ccflags-y += -D__CHECK_ENDIAN__