diff --git a/verify/uvm-python/Makefile b/verify/uvm-python/Makefile index 7442749..fc3a2de 100644 --- a/verify/uvm-python/Makefile +++ b/verify/uvm-python/Makefile @@ -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 @@ -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; \