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

16 lines
243 B
Makefile
Raw Normal View History

2022-01-26 03:24:46 +00:00
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