summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNick Gerace <nickagerace@gmail.com>2020-11-12 01:03:57 -0500
committerNick Gerace <nickagerace@gmail.com>2020-11-12 01:03:57 -0500
commitbe7a11f4ae9bad9370073895fa9314a875ed1ce5 (patch)
tree0763d818d9b407ce573a87b32244eda27e92b422 /Makefile
parent24fd7cb9573f6d8a52bfa06fd84f6fa68c126f07 (diff)
downloadgfold-be7a11f4ae9bad9370073895fa9314a875ed1ce5.zip
Remove install targets from Makefile
Remove install targets from Makefile. The addition to crates.io negates these targets.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index 7fd1432..6ea2799 100644
--- a/Makefile
+++ b/Makefile
@@ -10,18 +10,6 @@ VERSION:=0.7.0
all: build
-run:
- @cd $(MAKEPATH); cargo run -- ..
-
-run-recursive:
- @cd $(MAKEPATH); cargo run -- .. -r
-
-install:
- cargo install --git https://github.com/nickgerace/gfold --tag $(VERSION)
-
-install-local:
- cargo install --path $(MAKEPATH)
-
build: pre-build
cd $(MAKEPATH); cargo build