mirror of
https://github.com/teo3300/rust-mal.git
synced 2026-01-12 01:05:32 +01:00
16 lines
290 B
Makefile
16 lines
290 B
Makefile
default: build-release
|
|
|
|
build-release:
|
|
cargo build --release
|
|
|
|
test:
|
|
cargo test --release
|
|
|
|
conf:
|
|
mkdir -p ${HOME}/.config/mal
|
|
cp -f core/core.mal ${HOME}/.config/mal/
|
|
|
|
install: build-release conf
|
|
sudo cp target/release/rust-mal /usr/local/bin/mal
|
|
sudo chown ${USER} /usr/local/bin/mal
|