@cryptotaxi247 / kubo / commits / 4c86543c5

make: add install_unsupported

License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>

Jakub Sztandera committed Feb 22, 2017 at 22:23 UTC 4c86543c5bec8b58acfa271676566d325c2632f9
1 file changed +11
Rules.mk
+11
@@ -102,6 +102,17 @@ install: $$(DEPS_GO)
102 go install $(go-flags-with-tags) ./cmd/ipfs
103 .PHONY: install
104
105 +install_unsupported:
106 + @echo "note: this command has yet to be tested to build in the system you are using"
107 + @echo "installing gx"
108 + go get -u github.com/whyrusleeping/gx
109 + go get -u github.com/whyrusleeping/gx-go
110 + @echo downloading dependencies
111 + gx install --global
112 + @echo "installing go-ipfs"
113 + go install ./cmd/ipfs
114 +.PHONY: install_unsupported
115 +
116 uninstall:
117 go clean -i ./cmd/ipfs
118 .PHONY: uninstall