diff --git a/Makefile b/Makefile index f74da1c..965053a 100644 --- a/Makefile +++ b/Makefile @@ -8,14 +8,14 @@ else endif GOBIN ?= $(shell go env GOPATH)/bin -GOMAKE ?= github.com/tkrop/go-make@v0.0.32 +GOMAKE ?= github.com/tkrop/go-make@v0.0.35 TARGETS := $(shell command -v $(GOBIN)/go-make >/dev/null || \ go install $(GOMAKE) >/dev/stderr && $(GOBIN)/go-make targets) # Declare all targets phony to make them available for auto-completion. .PHONY:: $(TARGETS) -# Delegate all targets to go-make in a single call suppressing other targets. +# Delegate all targets to go-make in a single call stubbing other targets. $(eval $(wordlist 1,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))::;@:) $(firstword $(MAKECMDGOALS) all):: - @$(GOBIN)/go-make $(strip $(MAKEFLAGS) $(MAKECMDGOALS)); + @$(GOBIN)/go-make $(MAKECMDGOALS);