diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2013-09-29 16:27:18 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2013-09-29 16:27:18 -0700 |
commit | cc31c45d8cccfb22a694e81f795ab77a98dbf745 (patch) | |
tree | e9586c5f3a96c2e35c77115a10307933d197c2ac /makefile | |
parent | 323746d39bfa3830194974658233d0b45809b060 (diff) |
Pretend to link against iOS 7 to get the flat UI.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; } |