From 8fab8279e2d089f5096d4d5ebec2c87ec896790f Mon Sep 17 00:00:00 2001 From: karei Date: Wed, 10 Apr 2024 20:52:06 +0300 Subject: [PATCH] Add support for FreeBSD-amd64 --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 0f56e88..5622b1d 100644 --- a/Makefile +++ b/Makefile @@ -33,9 +33,17 @@ else OS_ID := osx endif + ifeq ($(UNAME_S),FreeBSD) + OS_ID := freebsd + endif + ifeq ($(TARGET),x86_64) ARCH_ID := x64 endif + + ifeq ($(TARGET),amd64) + ARCH_ID := x64 + endif ifeq ($(TARGET),x86) ARCH_ID := x86