We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0948ab commit 90e1fbdCopy full SHA for 90e1fbd
.gitignore
@@ -1,2 +1,3 @@
1
iap_curl
2
vendor
3
+dist
Makefile
@@ -0,0 +1,18 @@
+.DEFAULT_GOAL := help
+
+.PHONY: all
4
+all:
5
6
+.PHONY: build
7
+build: ## Build for local environment
8
+ @go build
9
10
+.PHONY: release
11
+release: ## Build for multiple OSs, packaging it and upload to GitHub Release
12
+ @bash <(wget -o /dev/null -qO - https://git.io/release-go)
13
14
+.PHONY: help
15
+help: ## Self-documented Makefile
16
+ @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
17
+ | sort \
18
+ | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
0 commit comments