Skip to content

Commit

Permalink
project-xilinx: Update the generic dependency list
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
AndreiGrozav committed Aug 10, 2023
1 parent 63eefef commit 43bcfa6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion projects/scripts/project-xilinx.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 43bcfa6

Please sign in to comment.