diff --git a/blspc/Makefile b/blspc/Makefile index 8d2ca31..5fdced1 100644 --- a/blspc/Makefile +++ b/blspc/Makefile @@ -13,9 +13,4 @@ build-debug: install-debug: rm -f ~/bin/blspc - cp ./target/debug/blspc ~/bin/blspc - -install-lib: - rm -rf ~/.bobbylib/ - mkdir -p ~/.bobbylib/ - cp -R ./lib/. ~/.bobbylib/ \ No newline at end of file + cp ./target/debug/blspc ~/bin/blspc \ No newline at end of file diff --git a/blvm/Makefile b/blvm/Makefile new file mode 100644 index 0000000..d5ad4e2 --- /dev/null +++ b/blvm/Makefile @@ -0,0 +1,16 @@ +all: build install +debug: build-debug install-debug + +build: + cargo build --release + +install: + rm -f ~/bin/blvm + cp ./target/release/blvm ~/bin/blvm + +build-debug: + cargo build + +install-debug: + rm -f ~/bin/blvm + cp ./target/debug/blvm ~/bin/blvm \ No newline at end of file