X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=Makefile;h=675deb9e668c2015ae7a5ef7d6a6dadbca33277a;hb=58da9ac6e691a8c660eb8ca838a154e11da0db68;hp=bd11c2637f34c9357fa731dced273a1fb5ac6a78;hpb=a155cd438c6558da266c1c5931361ea088b35653;p=govpp.git diff --git a/Makefile b/Makefile index bd11c26..675deb9 100644 --- a/Makefile +++ b/Makefile @@ -94,7 +94,8 @@ gen-binapi-docker: install-generator ## Generate binapi code (using Docker) docker run -t --rm \ -e DEBUG_GOVPP \ -v "$(shell which binapi-generator):/usr/local/bin/binapi-generator:ro" \ - -v "$(shell pwd):/govpp" -w /govpp \ + -v "$(shell pwd):/govpp" \ + -w /govpp \ -u "$(shell id -u):$(shell id -g)" \ "${VPP_IMG}" \ sh -ec "cd $(BINAPI_DIR) && $(cmds)" @@ -104,9 +105,9 @@ extras: help: @echo "List of make targets:" - grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' -.DEFAULT = help +.DEFAULT_GOAL = help .PHONY: help \ build cmd examples clean \