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