Last active
December 22, 2015 17:19
-
-
Save rolfbjarne/e6671a99284e70986e97 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/builds/.gitignore b/builds/.gitignore | |
index 592aa50..f7174ce 100644 | |
--- a/builds/.gitignore | |
+++ b/builds/.gitignore | |
@@ -29,4 +29,6 @@ install | |
watchsimulator | |
watchbcl | |
tvsimulator | |
+_ios-cache | |
+*.zip | |
diff --git a/builds/Makefile b/builds/Makefile | |
index 8210db2..8e39fbd 100644 | |
--- a/builds/Makefile | |
+++ b/builds/Makefile | |
@@ -2072,3 +2072,8 @@ clean-crosstv: | |
-rm -rf crosstv .stamp-configure-crosstv crosstv.config.cache | |
crosstv: build-crosstv install-crosstv | |
+ | |
+pack-ios-mono-bundle: | |
+ $(Q) rm -rf $(TOP)/builds/_ios-cache | |
+ $(Q) $(MAKE) install IOS_DESTDIR=$(TOP)/builds/_ios-cache -j8 | |
+ $(Q) zip -9ry ios-cache.zip _ios-cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment