summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-01-07 11:54:55 -0800
committerGitHub <noreply@github.com>2019-01-07 11:54:55 -0800
commit8c8d895d66f4bebe004463f77298a20a726b6690 (patch)
tree51d6f94609b0fa7f3e4d979c5f28a75fbd423d54 /Makefile
parentbe84d9727e3d6ba649d4ca2d1b7d52849943310c (diff)
parent41fb81d074f57bcf562e7dee78a78896e9a0bc64 (diff)
downloadpodman-8c8d895d66f4bebe004463f77298a20a726b6690.tar.gz
podman-8c8d895d66f4bebe004463f77298a20a726b6690.tar.bz2
podman-8c8d895d66f4bebe004463f77298a20a726b6690.zip
Merge pull request #2098 from baude/remote
Add ability to build golang remote client
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 32f21227f..3fd9b4ed4 100644
--- a/Makefile
+++ b/Makefile
@@ -111,6 +111,9 @@ test/goecho/goecho: .gopathok $(wildcard test/goecho/*.go)
podman: .gopathok $(PODMAN_VARLINK_DEPENDENCIES)
$(GO) build -ldflags '$(LDFLAGS_PODMAN)' -tags "$(BUILDTAGS)" -o bin/$@ $(PROJECT)/cmd/podman
+podman-remote: .gopathok $(PODMAN_VARLINK_DEPENDENCIES)
+ $(GO) build -ldflags '$(LDFLAGS_PODMAN)' -tags "$(BUILDTAGS) remoteclient" -o bin/$@ $(PROJECT)/cmd/podman
+
local-cross: $(CROSS_BUILD_TARGETS)
bin/podman.cross.%: .gopathok