Skip to content

Commit

Permalink
update uvm makefile to clone ip utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
NouranAbdelaziz committed May 19, 2024
1 parent 59974a4 commit 0217c28
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion verify/uvm-python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MODULE ?= top_module
AHB_FILES ?= $(PWD)/../../hdl/rtl/bus_wrappers/EF_TMR32_AHBL.pp.v
APB_FILES ?= $(PWD)/../../hdl/rtl/bus_wrappers/EF_TMR32_APB.pp.v
WB_FILES ?= $(PWD)/../../hdl/rtl/bus_wrappers/EF_TMR32_WB.pp.v
HDL_FILES ?= $(PWD)/../../hdl/rtl/EF_TMR32.pp.v
HDL_FILES ?= $(PWD)/IP_Utilities/rtl/aucohl_lib.v $(PWD)/../../hdl/rtl/EF_TMR32.pp.v
VERILOG_SOURCES ?= $(PWD)/top.v $(AHB_FILES) $(APB_FILES) $(WB_FILES) $(HDL_FILES)
RTL_MACROS += ""
BUS_TYPE ?= APB
Expand Down Expand Up @@ -44,6 +44,11 @@ SIM_TAG ?= default_tag
# Define SIM_PATH variable
SIM_PATH := $(PWD)/sim/$(SIM_TAG)

clone_ip_util := $(shell if [ ! -d "IP_Utilities" ]; then \
echo "Cloning the IP_Utilities repository..."; \
git clone https://github.com/shalan/IP_Utilities.git; \
fi;)

clone_ef_uvm := $(shell if [ ! -d "EF_UVM" ]; then \
echo "Cloning the EF_UVM repository..."; \
git clone https://github.com/efabless/EF_UVM.git; \
Expand Down

0 comments on commit 0217c28

Please sign in to comment.