diff options
author | Nick Gerace <nickagerace@gmail.com> | 2020-11-12 01:03:57 -0500 |
---|---|---|
committer | Nick Gerace <nickagerace@gmail.com> | 2020-11-12 01:03:57 -0500 |
commit | be7a11f4ae9bad9370073895fa9314a875ed1ce5 (patch) | |
tree | 0763d818d9b407ce573a87b32244eda27e92b422 /Makefile | |
parent | 24fd7cb9573f6d8a52bfa06fd84f6fa68c126f07 (diff) | |
download | gfold-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-- | Makefile | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -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 |