mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
eb7e2d9258
The entire content of constants.c if guarded by an ifdef, so switch to just building the file conditionally instead. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Keith Busch <kbusch@kernel.org> Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com> Reviewed-by: Sagi Grimberg <sagi@grimberg.me> Signed-off-by: Jens Axboe <axboe@kernel.dk>
33 lines
868 B
Makefile
33 lines
868 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
ccflags-y += -I$(src)
|
|
|
|
obj-$(CONFIG_NVME_CORE) += nvme-core.o
|
|
obj-$(CONFIG_BLK_DEV_NVME) += nvme.o
|
|
obj-$(CONFIG_NVME_FABRICS) += nvme-fabrics.o
|
|
obj-$(CONFIG_NVME_RDMA) += nvme-rdma.o
|
|
obj-$(CONFIG_NVME_FC) += nvme-fc.o
|
|
obj-$(CONFIG_NVME_TCP) += nvme-tcp.o
|
|
obj-$(CONFIG_NVME_APPLE) += nvme-apple.o
|
|
|
|
nvme-core-y += core.o ioctl.o
|
|
nvme-core-$(CONFIG_NVME_VERBOSE_ERRORS) += constants.o
|
|
nvme-core-$(CONFIG_TRACING) += trace.o
|
|
nvme-core-$(CONFIG_NVME_MULTIPATH) += multipath.o
|
|
nvme-core-$(CONFIG_BLK_DEV_ZONED) += zns.o
|
|
nvme-core-$(CONFIG_FAULT_INJECTION_DEBUG_FS) += fault_inject.o
|
|
nvme-core-$(CONFIG_NVME_HWMON) += hwmon.o
|
|
nvme-core-$(CONFIG_NVME_AUTH) += auth.o
|
|
|
|
nvme-y += pci.o
|
|
|
|
nvme-fabrics-y += fabrics.o
|
|
|
|
nvme-rdma-y += rdma.o
|
|
|
|
nvme-fc-y += fc.o
|
|
|
|
nvme-tcp-y += tcp.o
|
|
|
|
nvme-apple-y += apple.o
|