diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-02-17 14:26:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-17 14:26:39 -0500 |
commit | 93e8c39834edd08c502d18c3d0b96948ec865a37 (patch) | |
tree | 4acd6685d8525aa0177f5f819a8d841337ed01ad /Makefile | |
parent | a34f27959a6125dc3e27d962cf0ec8715c30eb3b (diff) | |
parent | d59749d64dc0d86a06b953b8fe41bb6d102b8556 (diff) | |
download | podman-93e8c39834edd08c502d18c3d0b96948ec865a37.tar.gz podman-93e8c39834edd08c502d18c3d0b96948ec865a37.tar.bz2 podman-93e8c39834edd08c502d18c3d0b96948ec865a37.zip |
Merge pull request #13255 from mheon/bump_400_final
Bump to v4.0.0 final
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -376,13 +376,23 @@ podman-winpath: .gopathok $(SOURCES) go.mod go.sum ./cmd/winpath .PHONY: podman-remote-darwin -podman-remote-darwin: ## Build podman-remote for macOS +podman-remote-darwin: podman-mac-helper ## Build podman-remote for macOS $(MAKE) \ CGO_ENABLED=$(DARWIN_GCO) \ GOOS=darwin \ GOARCH=$(GOARCH) \ bin/darwin/podman +.PHONY: podman-mac-helper +podman-mac-helper: ## Build podman-mac-helper for macOS + CGO_ENABLED=0 \ + GOOS=darwin \ + GOARCH=$(GOARCH) \ + $(GO) build \ + $(BUILDFLAGS) \ + -o bin/darwin/podman-mac-helper \ + ./cmd/podman-mac-helper + bin/rootlessport: .gopathok $(SOURCES) go.mod go.sum CGO_ENABLED=$(CGO_ENABLED) \ $(GO) build \ |