aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/rancher/go-rancher/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/rancher/go-rancher/Makefile')
-rw-r--r--vendor/github.com/rancher/go-rancher/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/vendor/github.com/rancher/go-rancher/Makefile b/vendor/github.com/rancher/go-rancher/Makefile
deleted file mode 100644
index d7d72a1..0000000
--- a/vendor/github.com/rancher/go-rancher/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
1TARGETS := $(shell ls scripts)
2
3.dapper:
4 @echo Downloading dapper
5 @curl -sL https://releases.rancher.com/dapper/latest/dapper-`uname -s`-`uname -m` > .dapper.tmp
6 @@chmod +x .dapper.tmp
7 @./.dapper.tmp -v
8 @mv .dapper.tmp .dapper
9
10$(TARGETS): .dapper
11 ./.dapper $@
12
13trash: .dapper
14 ./.dapper -m bind trash
15
16trash-keep: .dapper
17 ./.dapper -m bind trash -k
18
19deps: trash
20
21.DEFAULT_GOAL := ci
22
23.PHONY: $(TARGETS)