diff --git a/openlane/Makefile b/openlane/Makefile index d2a52864c..c9cb42c89 100644 --- a/openlane/Makefile +++ b/openlane/Makefile @@ -67,7 +67,7 @@ list: .PHONY: $(designs) $(designs) : export current_design=$@ -$(designs) : % : ./%/config.json +$(designs) : % : ./%/config.json enable-openlane-pdk ifneq (,$(wildcard ./$(current_design)/interactive.tcl)) $(docker_run) \ $(OPENLANE_IMAGE_NAME) sh -c $(openlane_cmd_interactive) @@ -84,6 +84,10 @@ endif @cp ./$*/runs/$*/PDK_SOURCES ../signoff/$*/ @cp ./$*/runs/$*/reports/*.csv ../signoff/$*/ +.PHONY: enable-openlane-pdk +enable-openlane-pdk: + $(UPRJ_ROOT)/venv/bin/volare enable $(OPEN_PDKS_COMMIT) + .PHONY: openlane openlane: check-openlane-env if [ -d "$(OPENLANE_ROOT)" ]; then\