From 49cf0f7ae34462fcb7ffee68eaa8f3ce57ec2275 Mon Sep 17 00:00:00 2001 From: AndreiGrozav Date: Thu, 10 Aug 2023 10:35:52 +0300 Subject: [PATCH] project-xilinx: Update the generic dependency list The generic project dependency list contains: system_top*.v system_bd.tcl system_project.tcl system_constr.xdc This items will not be included in the auto generated makefiles. But used as generic dependency. This commit adds: -wildcard check of system_constr*.xdc. -wildcard check of system_constr*.tcl. --- projects/scripts/project-xilinx.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/scripts/project-xilinx.mk b/projects/scripts/project-xilinx.mk index 37081a04a..2102d09e0 100644 --- a/projects/scripts/project-xilinx.mk +++ b/projects/scripts/project-xilinx.mk @@ -68,7 +68,8 @@ CLEAN_DIRS := $(dir $(wildcard */*_vivado.log)) M_DEPS += system_project.tcl M_DEPS += system_bd.tcl M_DEPS += $(wildcard system_top*.v) -M_DEPS += $(wildcard system_constr.xdc) # Not all projects have this file +M_DEPS += $(wildcard system_constr*.xdc) # Not all projects have this file +M_DEPS += $(wildcard system_constr*.tcl) # Not all projects have this file M_DEPS += $(HDL_PROJECT_PATH)scripts/adi_project_xilinx.tcl M_DEPS += $(HDL_PROJECT_PATH)../scripts/adi_env.tcl M_DEPS += $(HDL_PROJECT_PATH)scripts/adi_board.tcl