build: add 'make help' to simply list available make targets (#13322)
This commit is contained in:
parent
b2045c0cd0
commit
4479d9e6df
|
@ -393,6 +393,12 @@ envoy-regen:
|
|||
@find "command/connect/envoy/testdata" -name '*.golden' -delete
|
||||
@go test -tags '$(GOTAGS)' ./command/connect/envoy -update
|
||||
|
||||
.PHONY: help
|
||||
help:
|
||||
$(info available make targets)
|
||||
$(info ----------------------)
|
||||
@grep "^[a-z0-9-][a-z0-9.-]*:" GNUmakefile | cut -d':' -f1 | sort
|
||||
|
||||
.PHONY: all bin dev dist cov test test-internal cover lint ui tools
|
||||
.PHONY: docker-images go-build-image ui-build-image consul-docker ui-docker
|
||||
.PHONY: version test-envoy-integ
|
||||
|
|
Loading…
Reference in New Issue