diff --git a/Makefile b/Makefile index 8923dd8..6c9e9ff 100644 --- a/Makefile +++ b/Makefile @@ -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 \ No newline at end of file + cargo run -- test -r std/tests + +install: test + cargo install --path . --force \ No newline at end of file