diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-09-11 10:33:26 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-09-11 10:33:27 -0700 |
commit | 49feda62bddc188d8b2fa413437b5fc70e3de51f (patch) | |
tree | f93c68ac30db6d1cf8a962ab94e675b0021dac2a /contrib | |
parent | 554913daf43f744f7d6bd8bd2cd008d96d19cbd9 (diff) | |
parent | 960160b061a29a4a4ae637e035c3892da72326ac (diff) | |
download | git-49feda62bddc188d8b2fa413437b5fc70e3de51f.tar.gz git-49feda62bddc188d8b2fa413437b5fc70e3de51f.tar.xz |
Merge branch 'jk/contrib-subtree-make-all'
* jk/contrib-subtree-make-all:
subtree: make "all" default target of Makefile
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/subtree/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/subtree/Makefile b/contrib/subtree/Makefile index d9a0ce2c6..c2bd703ee 100644 --- a/contrib/subtree/Makefile +++ b/contrib/subtree/Makefile @@ -1,3 +1,6 @@ +# The default target of this Makefile is... +all:: + -include ../../config.mak.autogen -include ../../config.mak @@ -34,7 +37,7 @@ GIT_SUBTREE_XML := git-subtree.xml GIT_SUBTREE_TXT := git-subtree.txt GIT_SUBTREE_HTML := git-subtree.html -all: $(GIT_SUBTREE) +all:: $(GIT_SUBTREE) $(GIT_SUBTREE): $(GIT_SUBTREE_SH) sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' $< >$@ |