Makefile: remove toolkit_upgrade target
License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Christian Couder committed
May 16, 2016 at 06:23 UTC
b5c6a62e63368f74d9ea64ce9dff071f2075b9cf
1 file changed
+2
-4
Makefile
+2
-4
@@ -22,8 +22,6 @@ all: help
22
godep:
23
go get github.com/tools/godep
24
25
-toolkit_upgrade: gx_upgrade gxgo_upgrade
26
-
25
go_check:
26
@bin/check_go_version $(IPFS_MIN_GO_VERSION)
27
@@ -68,7 +66,7 @@ clean:
66
uninstall:
67
make -C cmd/ipfs uninstall
68
71
-PHONY += all help godep toolkit_upgrade gx_check
69
+PHONY += all help godep gx_check
70
PHONY += go_check deps vendor install build nofuse clean uninstall
71
72
##############################################################
@@ -125,7 +123,7 @@ PHONY += test test_short test_expensive
123
help:
124
@echo 'DEPENDENCY TARGETS:'
125
@echo ''
128
- @echo ' toolkit_upgrade - Installs or upgrades gx'
126
+ @echo ' gx_check - Installs or upgrades gx and gx-go'
127
@echo ' deps - Download dependencies using gx'
128
@echo ' vendor - Create a Godep workspace of 3rd party dependencies'
129
@echo ''