diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-09-08 10:25:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 10:25:12 -0400 |
commit | bcb58eacfc678197a5db0ade87eab69804c731f7 (patch) | |
tree | 7ae33bbcbb61028ece934365c8e95cea54d6a2d0 | |
parent | f763962024bff7ac46dbb872c1f099d3c49ddc67 (diff) | |
parent | 3bf7b9400c500e136212881760061a906c5ec374 (diff) | |
download | podman-bcb58eacfc678197a5db0ade87eab69804c731f7.tar.gz podman-bcb58eacfc678197a5db0ade87eab69804c731f7.tar.bz2 podman-bcb58eacfc678197a5db0ade87eab69804c731f7.zip |
Merge pull request #7559 from lsm5/additional-cross-targets
Makefile: add cross compile targets for more arches
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -106,7 +106,10 @@ GOMD2MAN ?= $(shell command -v go-md2man || echo '$(GOBIN)/go-md2man') CROSS_BUILD_TARGETS := \ bin/podman.cross.linux.amd64 \ bin/podman.cross.linux.ppc64le \ - bin/podman.cross.linux.arm + bin/podman.cross.linux.arm \ + bin/podman.cross.linux.arm64 \ + bin/podman.cross.linux.386 \ + bin/podman.cross.linux.s390x .PHONY: all all: binaries docs |