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
@ -12,4 +12,7 @@ integration: unit
cargo run -- test -r integration_tests
stdlibtest: integration
cargo run -- test -r std/tests
cargo run -- test -r std/tests
install: test
cargo install --path . --force