diff options
author | Todd Zullinger <tmz@pobox.com> | 2018-06-12 23:10:36 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-18 14:58:59 -0700 |
commit | 04542b6012a48ddbc45f1dc13fb189ae3946a130 (patch) | |
tree | c8415a2c2e926d3b7c8873de50a974115aa47115 /contrib/credential/netrc | |
parent | git-credential-netrc: fix exit status when tests fail (diff) | |
download | tgif-04542b6012a48ddbc45f1dc13fb189ae3946a130.tar.xz |
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 <tmz@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/credential/netrc')
-rw-r--r-- | contrib/credential/netrc/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
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 |