2011-05-15 10:43:48 +00:00
|
|
|
#
|
|
|
|
# Makefile - Intel Management Engine Interface (Intel MEI) Linux driver
|
2014-01-15 22:58:36 +00:00
|
|
|
# Copyright (c) 2010-2014, Intel Corporation.
|
2011-05-15 10:43:48 +00:00
|
|
|
#
|
|
|
|
obj-$(CONFIG_INTEL_MEI) += mei.o
|
|
|
|
mei-objs := init.o
|
2012-12-25 17:06:07 +00:00
|
|
|
mei-objs += hbm.o
|
2011-05-15 10:43:48 +00:00
|
|
|
mei-objs += interrupt.o
|
2013-02-06 12:06:41 +00:00
|
|
|
mei-objs += client.o
|
2011-05-15 10:43:48 +00:00
|
|
|
mei-objs += main.o
|
2012-11-01 19:17:15 +00:00
|
|
|
mei-objs += amthif.o
|
2011-05-15 10:43:48 +00:00
|
|
|
mei-objs += wd.o
|
2013-03-27 15:29:53 +00:00
|
|
|
mei-objs += bus.o
|
2013-04-11 01:03:29 +00:00
|
|
|
mei-objs += nfc.o
|
2013-04-05 19:10:34 +00:00
|
|
|
mei-$(CONFIG_DEBUG_FS) += debugfs.o
|
2013-03-27 14:58:30 +00:00
|
|
|
|
|
|
|
obj-$(CONFIG_INTEL_MEI_ME) += mei-me.o
|
|
|
|
mei-me-objs := pci-me.o
|
|
|
|
mei-me-objs += hw-me.o
|
2014-01-15 22:58:36 +00:00
|
|
|
|
|
|
|
obj-$(CONFIG_INTEL_MEI_TXE) += mei-txe.o
|
|
|
|
mei-txe-objs := pci-txe.o
|
|
|
|
mei-txe-objs += hw-txe.o
|
2015-02-10 08:39:33 +00:00
|
|
|
|
|
|
|
mei-$(CONFIG_EVENT_TRACING) += mei-trace.o
|
|
|
|
CFLAGS_mei-trace.o = -I$(src)
|