Browse Source

build: add 'make help' to simply list available make targets (#13322)

pull/13337/head
R.B. Boyer 3 years ago committed by GitHub
parent
commit
06ae7aa891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      GNUmakefile

6
GNUmakefile

@ -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…
Cancel
Save