rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | # |
| 3 | # Makefile - Intel Management Engine Interface (Intel MEI) Linux driver |
| 4 | # Copyright (c) 2010-2014, Intel Corporation. |
| 5 | # |
| 6 | obj-$(CONFIG_INTEL_MEI) += mei.o |
| 7 | mei-objs := init.o |
| 8 | mei-objs += hbm.o |
| 9 | mei-objs += interrupt.o |
| 10 | mei-objs += client.o |
| 11 | mei-objs += main.o |
| 12 | mei-objs += bus.o |
| 13 | mei-objs += bus-fixup.o |
| 14 | mei-$(CONFIG_DEBUG_FS) += debugfs.o |
| 15 | |
| 16 | obj-$(CONFIG_INTEL_MEI_ME) += mei-me.o |
| 17 | mei-me-objs := pci-me.o |
| 18 | mei-me-objs += hw-me.o |
| 19 | |
| 20 | obj-$(CONFIG_INTEL_MEI_TXE) += mei-txe.o |
| 21 | mei-txe-objs := pci-txe.o |
| 22 | mei-txe-objs += hw-txe.o |
| 23 | |
| 24 | mei-$(CONFIG_EVENT_TRACING) += mei-trace.o |
| 25 | CFLAGS_mei-trace.o = -I$(src) |