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