mirror of https://github.com/efabless/caravel.git
Volare integration (#53)
* new target pdk-with-volare * minor change * added volare update * minor modifications
This commit is contained in:
parent
5d8b579b6c
commit
a54fa37c43
19
Makefile
19
Makefile
|
@ -1212,6 +1212,25 @@ else
|
|||
rm -rf $(MCW_ROOT)/*
|
||||
endif
|
||||
|
||||
|
||||
###########################################################################
|
||||
|
||||
.PHONY: pdk-with-volare
|
||||
pdk-with-volare: check-python install-volare $(OPENLANE_ROOT)/dependencies/tool_metadata.yml
|
||||
@volare enable -f $(OPENLANE_ROOT)/dependencies/tool_metadata.yml
|
||||
|
||||
check-python:
|
||||
ifeq ($(shell which python3),)
|
||||
$(error Please install python 3.6+)
|
||||
endif
|
||||
|
||||
install-volare:
|
||||
python3 -m pip install --upgrade volare
|
||||
|
||||
$(OPENLANE_ROOT)/dependencies/tool_metadata.yml:
|
||||
$(error either openlane is missing or OPENLANE_ROOT is not exported)
|
||||
|
||||
|
||||
###########################################################################
|
||||
pdk-with-sram: pdk
|
||||
.PHONY: pdk
|
||||
|
|
Loading…
Reference in New Issue