diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-07-02 12:08:05 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-07-02 12:08:05 -0700 |
| commit | 94c9350a676585b895ecf2e29962fe894b3a545d (patch) | |
| tree | 44a125f90ba30253c5a545fbbf13656270bbbd59 /contrib/persistent-https/Makefile | |
| parent | e6c30289c6647eaec426e3b4015d65b5bd63dc1e (diff) | |
| parent | af2a4b3eb75ca794514dd1e65f90f5d3417c34a0 (diff) | |
| download | git-94c9350a676585b895ecf2e29962fe894b3a545d.tar.xz | |
Merge branch 'ps/contrib-sweep'
Remove bunch of stuff from contrib/ hierarchy.
* ps/contrib-sweep:
contrib: remove some scripts in "stats" directory
contrib: remove "git-new-workdir"
contrib: remove "emacs" directory
contrib: remove "git-resurrect.sh"
contrib: remove "persistent-https" remote helper
contrib: remove "mw-to-git"
contrib: remove "hooks" directory
contrib: remove "thunderbird-patch-inline"
contrib: remove remote-helper stubs
contrib: remove "examples" directory
contrib: remove "remotes2config.sh"
Diffstat (limited to 'contrib/persistent-https/Makefile')
| -rw-r--r-- | contrib/persistent-https/Makefile | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/contrib/persistent-https/Makefile b/contrib/persistent-https/Makefile deleted file mode 100644 index 691737e76b..0000000000 --- a/contrib/persistent-https/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 2012 Google Inc. All Rights Reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# 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 \ - git-remote-persistent-http - -git-remote-persistent-https--proxy: git-remote-persistent-https - ln -f -s git-remote-persistent-https git-remote-persistent-https--proxy - -git-remote-persistent-http: git-remote-persistent-https - ln -f -s git-remote-persistent-https git-remote-persistent-http - -git-remote-persistent-https: - case $$(go version) in \ - "go version go"1.[0-5].*) EQ=" " ;; *) EQ="=" ;; esac && \ - go build -o git-remote-persistent-https \ - -ldflags "-X main._BUILD_EMBED_LABEL$${EQ}$(BUILD_LABEL)" - -clean: - rm -f git-remote-persistent-http* *.tar.gz - -tar: clean all - @chmod 555 git-remote-persistent-https - @tar -czf $(TAR_OUT) git-remote-persistent-http* README LICENSE - @echo - @echo "Created $(TAR_OUT)" |
