mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
e15f669cd9
libsas needs to include some header files in the scsi directory. However these are currently hardcoded with the path "../" in the C files. Do this in the Makefile to avoid hardcoding the path. Link: https://lore.kernel.org/r/20210716074551.771312-1-yanaijie@huawei.com Cc: John Garry <john.garry@huawei.com> Reviewed-by: John Garry <john.garry@huawei.com> Signed-off-by: Jason Yan <yanaijie@huawei.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
22 lines
550 B
Makefile
22 lines
550 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Kernel Makefile for the libsas helpers
|
|
#
|
|
# Copyright (C) 2005 Adaptec, Inc. All rights reserved.
|
|
# Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
|
|
#
|
|
|
|
obj-$(CONFIG_SCSI_SAS_LIBSAS) += libsas.o
|
|
libsas-y += sas_init.o \
|
|
sas_phy.o \
|
|
sas_port.o \
|
|
sas_event.o \
|
|
sas_discover.o \
|
|
sas_expander.o \
|
|
sas_scsi_host.o \
|
|
sas_task.o
|
|
libsas-$(CONFIG_SCSI_SAS_ATA) += sas_ata.o
|
|
libsas-$(CONFIG_SCSI_SAS_HOST_SMP) += sas_host_smp.o
|
|
|
|
ccflags-y := -DDEBUG -I$(srctree)/drivers/scsi
|