1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 11:27:38 +00:00
bobbylisp/blspc/Makefile

21 lines
335 B
Makefile
Raw Normal View History

2022-01-24 20:08:41 +00:00
all: build install
debug: build-debug install-debug
build:
cargo build --release
install:
rm -f ~/bin/blspc
cp ./target/release/blspc ~/bin/blspc
build-debug:
cargo build
install-debug:
rm -f ~/bin/blspc
cp ./target/debug/blspc ~/bin/blspc
install-lib:
rm -rf ~/.bobbylib/
mkdir -p ~/.bobbylib/
cp -R ./lib/. ~/.bobbylib/