Makefile 626 B

1234567891011121314151617181920212223242526
  1. #
  2. # Makefile - Intel Management Engine Interface (Intel MEI) Linux driver
  3. # Copyright (c) 2010-2014, Intel Corporation.
  4. #
  5. obj-$(CONFIG_INTEL_MEI) += mei.o
  6. mei-objs := init.o
  7. mei-objs += hbm.o
  8. mei-objs += interrupt.o
  9. mei-objs += client.o
  10. mei-objs += main.o
  11. mei-objs += amthif.o
  12. mei-objs += wd.o
  13. mei-objs += bus.o
  14. mei-objs += bus-fixup.o
  15. mei-$(CONFIG_DEBUG_FS) += debugfs.o
  16. obj-$(CONFIG_INTEL_MEI_ME) += mei-me.o
  17. mei-me-objs := pci-me.o
  18. mei-me-objs += hw-me.o
  19. obj-$(CONFIG_INTEL_MEI_TXE) += mei-txe.o
  20. mei-txe-objs := pci-txe.o
  21. mei-txe-objs += hw-txe.o
  22. mei-$(CONFIG_EVENT_TRACING) += mei-trace.o
  23. CFLAGS_mei-trace.o = -I$(src)