correct typos

This commit is contained in:
jeffdi 2023-09-11 11:01:40 -07:00
parent a72f4549ba
commit 78a5f2a4a2
1 changed files with 8 additions and 8 deletions

View File

@ -62,12 +62,12 @@ MCW_LITE?=1
ifeq ($(MCW),LITEX_VEXRISCV)
MCW_NAME := mcw-litex-vexriscv
MCW_REPO := https://github.com/efabless/caravel_mgmt_soc_litex
MCW_TAG := $(MPW_TAG)
MCW_REPO ?= https://github.com/efabless/caravel_mgmt_soc_litex
MCW_TAG ?= $(MPW_TAG)
else
MCW_NAME := mcw-pico
MCW_REPO := https://github.com/efabless/caravel_pico
MCW_TAG := $(MPW_TAG)
MCW_REPO ?= https://github.com/efabless/caravel_pico
MCW_TAG ?= $(MPW_TAG)
endif
# Install caravel as submodule, (1): submodule, (0): clone
@ -1221,7 +1221,7 @@ update_caravel:
.PHONY: install_mcw
install_mcw:
if [ -d "$(MCW_ROOT)" ]; then \
echo "Deleting exisiting $(MCW_ROOT)" && \
echo "Deleting existing $(MCW_ROOT)" && \
rm -rf $(MCW_ROOT) && sleep 2;\
fi
ifeq ($(SUBMODULE),1)
@ -1298,7 +1298,7 @@ clean-pdk:
.PHONY: skywater-pdk
skywater-pdk:
if [ -d "$(PDK_ROOT)/skywater-pdk" ]; then\
echo "Deleting exisiting $(PDK_ROOT)/skywater-pdk" && \
echo "Deleting existing $(PDK_ROOT)/skywater-pdk" && \
rm -rf $(PDK_ROOT)/skywater-pdk && sleep 2;\
fi
git clone https://github.com/google/skywater-pdk.git $(PDK_ROOT)/skywater-pdk
@ -1315,7 +1315,7 @@ skywater-pdk:
.PHONY: open-pdks
open-pdks:
if [ -d "$(PDK_ROOT)/open_pdks" ]; then \
echo "Deleting exisiting $(PDK_ROOT)/open_pdks" && \
echo "Deleting existing $(PDK_ROOT)/open_pdks" && \
rm -rf $(PDK_ROOT)/open_pdks && sleep 2; \
fi
git clone git://opencircuitdesign.com/open_pdks $(PDK_ROOT)/open_pdks
@ -1326,7 +1326,7 @@ open-pdks:
.PHONY: sky130
sky130:
if [ -d "$(PDK_ROOT)/$(PDK)" ]; then \
echo "Deleting exisiting $(PDK_ROOT)/$(PDK)" && \
echo "Deleting existing $(PDK_ROOT)/$(PDK)" && \
rm -rf $(PDK_ROOT)/$(PDK) && sleep 2;\
fi
docker run --rm\