From b65583774f6b7957327ac6d57e0daf862392b2ec Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Sun, 27 Sep 2020 17:19:18 +0200 Subject: [PATCH] mk: add Apple to OS detections [ci skip] --- common.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common.mk b/common.mk index c5fba852..99a83ee1 100644 --- a/common.mk +++ b/common.mk @@ -29,6 +29,9 @@ endif ifneq (,$(findstring linux,$(SFIZZ_MACHINE))) SFIZZ_OS_LINUX := 1 endif +ifneq (,$(findstring apple,$(SFIZZ_MACHINE))) +SFIZZ_OS_APPLE := 1 +endif ifneq (,$(findstring mingw,$(SFIZZ_MACHINE))) SFIZZ_OS_WINDOWS := 1 endif