commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
22 lines
524 B
Makefile
22 lines
524 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
|