diff options
author | Lokesh Mandvekar <lsm5@fedoraproject.org> | 2020-09-08 08:32:10 -0400 |
---|---|---|
committer | Lokesh Mandvekar <lsm5@fedoraproject.org> | 2020-09-08 08:53:41 -0400 |
commit | 3bf7b9400c500e136212881760061a906c5ec374 (patch) | |
tree | 104e4bc91951018cb58980573369e86c35b1ebce | |
parent | be7778df6c70227dab760ea92637ed97dad29641 (diff) | |
download | podman-3bf7b9400c500e136212881760061a906c5ec374.tar.gz podman-3bf7b9400c500e136212881760061a906c5ec374.tar.bz2 podman-3bf7b9400c500e136212881760061a906c5ec374.zip |
Makefile: add cross compile targets for more arches
This commit adds additional targets for which we provide binary packages
on fedora and other distros.
Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
-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 |