Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sdks/builds/Makefile')
-rw-r--r--sdks/builds/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/sdks/builds/Makefile b/sdks/builds/Makefile
index 35dfe845c50..a34c3e4e602 100644
--- a/sdks/builds/Makefile
+++ b/sdks/builds/Makefile
@@ -39,12 +39,14 @@ ifneq ($(UNAME),Darwin)
# iOS and Mac requires Xcode to be available, and Xcode is only available on macOS
ENABLE_IOS=
ENABLE_MAC=
+ENABLE_MACCAT=
endif
# On Windows, we will just trigger LLVM and Android builds using this Makefile.
ifeq ($(UNAME),Windows)
ENABLE_IOS=
ENABLE_MAC=
+ENABLE_MACCAT=
ENABLE_WASM=
ENABLE_WASM_CROSS=
ENABLE_DESKTOP=
@@ -105,6 +107,10 @@ ifdef ENABLE_MAC
mac_ARCHIVE=
endif
+ifdef ENABLE_MACCAT
+maccat_ARCHIVE=
+endif
+
ifdef ENABLE_WASM
wasm_ARCHIVE=
endif
@@ -138,6 +144,10 @@ ifdef ENABLE_MAC
$(eval $(call ArchiveTemplate,mac,7z))
endif
+ifdef ENABLE_MACCAT
+$(eval $(call ArchiveTemplate,maccat,7z))
+endif
+
ifdef ENABLE_WASM
$(eval $(call ArchiveTemplate,wasm,zip))
endif
@@ -223,6 +233,11 @@ ifdef ENABLE_MAC
include mac.mk
endif
+## Mac Catalyst targets
+ifdef ENABLE_MACCAT
+include maccat.mk
+endif
+
## Desktop targets
## To run host-side tests
ifdef ENABLE_DESKTOP