From: Junio C Hamano Date: Thu, 1 Dec 2005 20:26:41 +0000 (-0800) Subject: Makefile: say the default target upfront. X-Git-Tag: v0.99.9l^2~20 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/2731d04883317f5de03a942bb0ea8c1eba6babad?ds=inline;hp=--cc Makefile: say the default target upfront. Alex Riesen wants to keep extra makefile targets in config.mak, but the file is included before any of our real targets. Having this at the beginning allows you to do so. Signed-off-by: Junio C Hamano --- 2731d04883317f5de03a942bb0ea8c1eba6babad diff --git a/Makefile b/Makefile index 00521fe51e..45db357cc2 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,6 @@ +# The default target of this Makefile is... +all: + # Define MOZILLA_SHA1 environment variable when running make to make use of # a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast # on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default