summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2013-09-29 16:27:18 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2013-09-29 16:27:18 -0700
commitcc31c45d8cccfb22a694e81f795ab77a98dbf745 (patch)
treee9586c5f3a96c2e35c77115a10307933d197c2ac /makefile
parent323746d39bfa3830194974658233d0b45809b060 (diff)
Pretend to link against iOS 7 to get the flat UI.
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/makefile b/makefile
index bcd811c..8719157 100644
--- a/makefile
+++ b/makefile
@@ -144,11 +144,13 @@ sysroot: sysroot.sh
MobileCydia: sysroot $(object) entitlements.xml
@echo "[link] $(object:Objects/%=%)"
- @$(cycc) $(filter %.o,$^) $(flags) $(link) $(libs) $(uikit)
+ @$(cycc) $(filter %.o,$^) $(flags) $(link) $(libs) $(uikit) -Wl,-sdk_version,7.0
@mkdir -p bins
@cp -a $@ bins/$@-$(version)
@echo "[strp] $@"
@strip -no_uuid $@
+ @echo "[uikt] $@"
+ @./uikit.sh $@
@echo "[sign] $@"
@ldid -T0 -Sentitlements.xml $@ || { rm -f $@ && false; }