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

16 lines
249 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
2022-01-26 03:24:46 +00:00
cp ./target/debug/blspc ~/bin/blspc