MAINT: Add a target to make install.

This commit is contained in:
Jeremy Wall 2019-01-15 19:33:08 -06:00
parent b9b30a4bd1
commit 692a52f46d

View File

@ -3,7 +3,7 @@ all: test build
build:
cargo build
test: unit integration stdlibtest
test: stdlibtest
unit:
cargo test
@ -13,3 +13,6 @@ integration: unit
stdlibtest: integration
cargo run -- test -r std/tests
install: test
cargo install --path . --force