add makefile rule for grabbing gx and deps
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
Jeromy committed
Jan 27, 2016 at 15:00 UTC
3b784b50a86053251d580e11ce775e7bf3c908c6
1 file changed
+7
Makefile
+7
@@ -14,6 +14,13 @@ all: help
14
godep:
15
go get github.com/tools/godep
16
17
+gx:
18
+ go get -u github.com/whyrusleeping/gx
19
+ go get -u github.com/whyrusleeping/gx-go
20
+
21
+deps: gx
22
+ gx install --global
23
+
24
# saves/vendors third-party dependencies to Godeps/_workspace
25
# -r flag rewrites import paths to use the vendored path
26
# ./... performs operation on all packages in tree