From: Todd Zullinger Date: Wed, 13 Jun 2018 03:10:36 +0000 (-0400) Subject: git-credential-netrc: make "all" default target of Makefile X-Git-Tag: v2.19.0-rc0~170^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=04542b6012a48ddbc45f1dc13fb189ae3946a130;p=thirdparty%2Fgit.git git-credential-netrc: make "all" default target of Makefile Running "make" in contrib/credential/netrc should run the "all" target rather than the "test" target. Add an empty "all::" target like most of our other Makefiles. Signed-off-by: Todd Zullinger Signed-off-by: Junio C Hamano --- diff --git a/contrib/credential/netrc/Makefile b/contrib/credential/netrc/Makefile index 0ffa407191..6174e3bb83 100644 --- a/contrib/credential/netrc/Makefile +++ b/contrib/credential/netrc/Makefile @@ -1,3 +1,6 @@ +# The default target of this Makefile is... +all:: + test: ./t-git-credential-netrc.sh