aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/rancher/go-rancher/Makefile
diff options
context:
space:
mode:
authorJake Champlin <jake@gnu.space>2017-06-09 17:54:32 +0000
committerJake Champlin <jake@gnu.space>2017-06-09 17:54:32 +0000
commit9b12e4fe6f3c95986f1f3ec791636c58ca7e7583 (patch)
tree38f5f12bec0e488a12f0459a7356e6b7de7d8f84 /vendor/github.com/rancher/go-rancher/Makefile
parentcec3de8a3bcaffd21dedd1bf42da4b490cae7e16 (diff)
downloadterraform-provider-statuscake-9b12e4fe6f3c95986f1f3ec791636c58ca7e7583.tar.gz
terraform-provider-statuscake-9b12e4fe6f3c95986f1f3ec791636c58ca7e7583.tar.zst
terraform-provider-statuscake-9b12e4fe6f3c95986f1f3ec791636c58ca7e7583.zip
Transfer of provider code
Diffstat (limited to 'vendor/github.com/rancher/go-rancher/Makefile')
-rw-r--r--vendor/github.com/rancher/go-rancher/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/github.com/rancher/go-rancher/Makefile b/vendor/github.com/rancher/go-rancher/Makefile
new file mode 100644
index 0000000..d7d72a1
--- /dev/null
+++ b/vendor/github.com/rancher/go-rancher/Makefile
@@ -0,0 +1,23 @@
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)