From 339de23017c47e246a43d3a98b8776b6e4e4f8c9 Mon Sep 17 00:00:00 2001 From: ecall73 Date: Fri, 8 May 2026 10:35:52 +0800 Subject: [PATCH] fix(Makefile): track CUTE scala sources in Makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 954e7b8f649..29a882c9e4d 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,8 @@ TOP_V = $(RTL_DIR)/$(TOP).$(RTL_SUFFIX) SIM_TOP_V = $(RTL_DIR)/$(SIM_TOP).$(RTL_SUFFIX) JAR = $(BUILD_DIR)/xsgen.jar -SCALA_FILE = $(shell find ./src/main/scala -name '*.scala') +SCALA_DIRS = ./src/main/scala $(wildcard ./CUTE/src/main/scala) +SCALA_FILE = $(shell find $(SCALA_DIRS) -name '*.scala') TEST_FILE = $(shell find ./src/test/scala -name '*.scala') MEM_GEN = ./scripts/vlsi_mem_gen