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.main
parent
aa11f4311c
commit
49cf0f7ae3
|
@ -68,7 +68,8 @@ CLEAN_DIRS := $(dir $(wildcard */*_vivado.log))
|
||||||
M_DEPS += system_project.tcl
|
M_DEPS += system_project.tcl
|
||||||
M_DEPS += system_bd.tcl
|
M_DEPS += system_bd.tcl
|
||||||
M_DEPS += $(wildcard system_top*.v)
|
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_project_xilinx.tcl
|
||||||
M_DEPS += $(HDL_PROJECT_PATH)../scripts/adi_env.tcl
|
M_DEPS += $(HDL_PROJECT_PATH)../scripts/adi_env.tcl
|
||||||
M_DEPS += $(HDL_PROJECT_PATH)scripts/adi_board.tcl
|
M_DEPS += $(HDL_PROJECT_PATH)scripts/adi_board.tcl
|
||||||
|
|
Loading…
Reference in New Issue