Skip to content

Commit

Permalink
Rename value in top Makefile so it doesn't conflict.
Browse files Browse the repository at this point in the history
`LIBRARIES` in the top Makefile would conflict with `LIBRARIES` in the
`scripts/make/git.mk`.

Signed-off-by: Tim 'mithro' Ansell <tansell@google.com>
  • Loading branch information
mithro committed Apr 29, 2021
1 parent dac0871 commit 04968de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ all: README.rst
@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 \
if [ -d "$$V/cells" ]; then \
python -m skywater_pdk.liberty $$V; \
Expand All @@ -99,7 +99,7 @@ sky130_fd_sc_ms-leakage: | $(CONDA_ENV_PYTHON)

sky130_fd_sc_ms: sky130_fd_sc_ms-leakage

timing: $(LIBRARIES) | $(CONDA_ENV_PYTHON)
timing: $(SC_LIBS) | $(CONDA_ENV_PYTHON)
@true


Expand Down

0 comments on commit 04968de

Please sign in to comment.