diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-02-25 14:19:36 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-02-25 14:19:36 -0800 |
| commit | 092180990de06a9be1b3d662c7e46eccceb24bb1 (patch) | |
| tree | e75849dff60e5072037ab2d9d508e3017b431c85 /contrib/persistent-https | |
| parent | Merge branch 'pw/merge-tree-stdin-deadlock-fix' (diff) | |
| parent | Makefile: set default goals in makefiles (diff) | |
| download | git-092180990de06a9be1b3d662c7e46eccceb24bb1.tar.gz git-092180990de06a9be1b3d662c7e46eccceb24bb1.zip | |
Merge branch 'ad/set-default-target-in-makefiles'
Correct the default target in Documentation/Makefile, and
future-proof all Makefiles from similar breakages by declaring the
default target (which happens to be "all") upfront.
* ad/set-default-target-in-makefiles:
Makefile: set default goals in makefiles
Diffstat (limited to 'contrib/persistent-https')
| -rw-r--r-- | contrib/persistent-https/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/persistent-https/Makefile b/contrib/persistent-https/Makefile index 52b84ba3d4..691737e76b 100644 --- a/contrib/persistent-https/Makefile +++ b/contrib/persistent-https/Makefile @@ -12,10 +12,13 @@ # See the License for the specific language governing permissions and # limitations under the License. +# The default target of this Makefile is... +all:: + BUILD_LABEL=$(shell cut -d" " -f3 ../../GIT-VERSION-FILE) TAR_OUT=$(shell go env GOOS)_$(shell go env GOARCH).tar.gz -all: git-remote-persistent-https git-remote-persistent-https--proxy \ +all:: git-remote-persistent-https git-remote-persistent-https--proxy \ git-remote-persistent-http git-remote-persistent-https--proxy: git-remote-persistent-https |
