diff --git a/Makefile b/Makefile index 401b0a73..6491f113 100644 --- a/Makefile +++ b/Makefile @@ -215,3 +215,13 @@ wipe: uninstall @rm -rf $(OPEN_PDKS_DIR) @rm -rf $(SKY130_PDKS_DIR) .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 \ No newline at end of file