From 184643f35469798e957314c352781c6570eae1bb Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Tue, 7 Feb 2023 10:31:46 -0800 Subject: [PATCH] Change library make target name --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index cdd527c1..9f5bd9ad 100644 --- a/Makefile +++ b/Makefile @@ -215,14 +215,14 @@ wipe: uninstall .PHONY: wipe # Build the openram library -build-library: +build_library: @rm -rf dist @rm -rf openram.egg-info @python3 -m pip install --upgrade build @python3 -m build -.PHONY: build-library +.PHONY: build_library # Build and install the openram library -library: build-library +library: build_library @python3 -m pip install --force --find-links=dist openram .PHONY: library