mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
13 lines
226 B
Makefile
13 lines
226 B
Makefile
all: build
|
|
debug: build-debug
|
|
|
|
build:
|
|
cd ./blspc; cargo build --release
|
|
rm ~/bin/blspc -f
|
|
mv ./target/release/blspc ~/bin/blspc
|
|
|
|
build-debug:
|
|
cd ./blspc; cargo build
|
|
rm ~/bin/blspc -f
|
|
mv ./target/debug/blspc ~/bin/blspc
|