mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 05:41:55 +00:00
8412bb69ed
Newer ASICs code changes more often, has more chance to fail compilation. So, let's compile them first so errors in those files will fail compilation sooner. Signed-off-by: Ohad Sharabi <osharabi@habana.ai> Reviewed-by: Oded Gabbay <ogabbay@kernel.org> Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
21 lines
447 B
Makefile
21 lines
447 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)/gaudi2/Makefile
|
|
habanalabs-y += $(HL_GAUDI2_FILES)
|
|
|
|
include $(src)/gaudi/Makefile
|
|
habanalabs-y += $(HL_GAUDI_FILES)
|
|
|
|
include $(src)/goya/Makefile
|
|
habanalabs-y += $(HL_GOYA_FILES)
|
|
|
|
habanalabs-$(CONFIG_DEBUG_FS) += common/debugfs.o
|