mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
16 lines
249 B
Makefile
16 lines
249 B
Makefile
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
|