From 9e1255568e2c4245bf6788a424134a588b84e6b9 Mon Sep 17 00:00:00 2001 From: Max P Date: Mon, 25 Mar 2024 19:23:24 +0100 Subject: [PATCH] Correct path for Timing Report echo in Makefile - Modified the echo command in the trace target to display the correct path of the Timing Report within the REPORT_DIR, enhancing accuracy in log messages. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28edefc..f3c537a 100644 --- a/Makefile +++ b/Makefile @@ -218,7 +218,7 @@ trace: ../project.cfg $(BITFILE) @echo "\n\e[1;33m============ Reports.. ===========\e[m\n" @echo "\e[1;97m===== Timing Summary Report ======\e[m" @cp ./$(BUILD_DIR)/$(PROJECT).twr $(REPORT_DIR)/$(PROJECT).TimingReport - @echo "\e[1;35m ./$(BUILD_DIR)/$(PROJECT).twr\e[m\n" + @echo "\e[1;35m ./$(REPORT_DIR)/$(PROJECT).TimingReport\e[m\n" test: buildtest runtest