mirror of https://github.com/VLSIDA/OpenRAM.git
Add Makefile targets for building the library
This commit is contained in:
parent
16432016b6
commit
41abd4b3f4
10
Makefile
10
Makefile
|
|
@ -215,3 +215,13 @@ wipe: uninstall
|
||||||
@rm -rf $(OPEN_PDKS_DIR)
|
@rm -rf $(OPEN_PDKS_DIR)
|
||||||
@rm -rf $(SKY130_PDKS_DIR)
|
@rm -rf $(SKY130_PDKS_DIR)
|
||||||
.PHONY: wipe
|
.PHONY: wipe
|
||||||
|
|
||||||
|
# Build the openram library
|
||||||
|
build-library:
|
||||||
|
@python3 -m build
|
||||||
|
.PHONY: build-library
|
||||||
|
|
||||||
|
# Build and install the openram library
|
||||||
|
library: build-library
|
||||||
|
@python3 -m pip install --find-links=dist openram --force
|
||||||
|
.PHONY: library
|
||||||
Loading…
Reference in New Issue