Rename value in top Makefile so it doesn't conflict.

`LIBRARIES` in the top Makefile would conflict with `LIBRARIES` in the
`scripts/make/git.mk`.

Signed-off-by: Tim 'mithro' Ansell <tansell@google.com>
This commit is contained in:
Tim 'mithro' Ansell 2021-04-28 18:39:20 -07:00
parent dac0871c34
commit 04968deacd
1 changed files with 3 additions and 3 deletions

View File

@ -79,9 +79,9 @@ all: README.rst
@true @true
LIBRARIES = $(sort $(notdir $(wildcard libraries/sky130_*_sc_*))) SC_LIBS = $(sort $(notdir $(wildcard libraries/sky130_*_sc_*)))
$(LIBRARIES): | $(CONDA_ENV_PYTHON) $(SC_LIBS): | $(CONDA_ENV_PYTHON)
@$(IN_CONDA_ENV) for V in libraries/$@/*; do \ @$(IN_CONDA_ENV) for V in libraries/$@/*; do \
if [ -d "$$V/cells" ]; then \ if [ -d "$$V/cells" ]; then \
python -m skywater_pdk.liberty $$V; \ python -m skywater_pdk.liberty $$V; \
@ -99,7 +99,7 @@ sky130_fd_sc_ms-leakage: | $(CONDA_ENV_PYTHON)
sky130_fd_sc_ms: sky130_fd_sc_ms-leakage sky130_fd_sc_ms: sky130_fd_sc_ms-leakage
timing: $(LIBRARIES) | $(CONDA_ENV_PYTHON) timing: $(SC_LIBS) | $(CONDA_ENV_PYTHON)
@true @true