mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 23:38:21 +07:00
70b2f993ea
For internal needs of our CI we need to move all the common code into a common folder instead of putting them in the root folder of the driver. Same applies to the common header files under include/ Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com> Reviewed-by: Omer Shpigelman <oshpigelman@habana.ai>
18 lines
380 B
Makefile
18 lines
380 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for HabanaLabs AI accelerators driver
|
|
#
|
|
|
|
obj-$(CONFIG_HABANA_AI) := habanalabs.o
|
|
|
|
include $(src)/common/Makefile
|
|
habanalabs-y += $(HL_COMMON_FILES)
|
|
|
|
include $(src)/goya/Makefile
|
|
habanalabs-y += $(HL_GOYA_FILES)
|
|
|
|
include $(src)/gaudi/Makefile
|
|
habanalabs-y += $(HL_GAUDI_FILES)
|
|
|
|
habanalabs-$(CONFIG_DEBUG_FS) += common/debugfs.o
|