]> git.saurik.com Git - cydia.git/blobdiff - makefile
Improve era locking on tables to allow rotation with HUDs.
[cydia.git] / makefile
index a3c3b6f092a94b7544eb2d490d46094fc557ed36..168a74f03a5086b590df52afa45c8fb3f3bfe52b 100644 (file)
--- a/makefile
+++ b/makefile
@@ -53,8 +53,11 @@ all: MobileCydia
 clean:
        rm -f MobileCydia
 
-MobileCydia: MobileCydia.mm UICaboodle/*.h UICaboodle/*.mm iPhonePrivate.h
-       $(cycc) $(filter %.mm,$^) $(flags) $(link) $(uikit)
+%.o: %.c
+       $(cycc) -c -o $@ -x c $<
+
+MobileCydia: MobileCydia.mm UICaboodle/*.h UICaboodle/*.mm SDURLCache/SDURLCache.h SDURLCache/SDURLCache.m iPhonePrivate.h lookup3.o Cytore.hpp
+       $(cycc) $(filter %.mm,$^) $(filter %.o,$^) $(foreach m,$(filter %.m,$^),-x objective-c++ $(m)) $(flags) $(link) $(uikit)
        ldid -Slaunch.xml $@ || { rm -f $@ && false; }
 
 CydiaAppliance: CydiaAppliance.mm
@@ -83,12 +86,15 @@ package: MobileCydia
        cp -a CydiaSettings.bundle _/System/Library/PreferenceBundles/CydiaSettings.bundle
        
        mkdir -p _/DEBIAN
-       echo "$$(cat control)"$$'\nInstalled-Size: '"$$(du -s _ | cut -f 1)" > _/DEBIAN/control
+       ./control.sh _ >_/DEBIAN/control
        
        sudo chown -R 0 _
        sudo chgrp -R 0 _
        sudo chmod 6755 _/Applications/Cydia.app/MobileCydia
        
-       $(dpkg) -b _ $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb
+       mkdir -p debs
+       ln -sf debs/cydia_$$(./version.sh)_iphoneos-arm.deb Cydia.deb
+       $(dpkg) -b _ Cydia.deb
+       readlink Cydia.deb
 
 .PHONY: all clean sign