From 692a52f46d19030d5b7d88a2d6abea53db03c54f Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Tue, 15 Jan 2019 19:33:08 -0600 Subject: [PATCH] MAINT: Add a target to make install. --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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