From fc65d72c3c3c2eb1c44f183a09e7e109d34698bb Mon Sep 17 00:00:00 2001 From: Doug Rabson Date: Wed, 17 Aug 2022 15:07:35 +0100 Subject: [PATCH] Makefile: Add cross build targets for freebsd This adds FreeBSD/amd64 and FreeBSD/arm64 to the cross build list. [NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7835e0eb4f..01e76fd661 100644 --- a/Makefile +++ b/Makefile @@ -151,7 +151,9 @@ CROSS_BUILD_TARGETS := \ bin/podman.cross.linux.mips \ bin/podman.cross.linux.mipsle \ bin/podman.cross.linux.mips64 \ - bin/podman.cross.linux.mips64le + bin/podman.cross.linux.mips64le \ + bin/podman.cross.freebsd.amd64 \ + bin/podman.cross.freebsd.arm64 # Dereference variable $(1), return value if non-empty, otherwise raise an error. err_if_empty = $(if $(strip $($(1))),$(strip $($(1))),$(error Required variable $(1) value is undefined, whitespace, or empty))