]> git.saurik.com Git - cydia.git/blobdiff - makefile
OMG the mechanism for allocating CYNavigationControllers was both incorrect and insane.
[cydia.git] / makefile
index 365ced3d3efb646bf820fcd4b18bd19544a37567..9236ff6f14e1ebae1d745c4996e61238c30728cf 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,16 +1,69 @@
-iPhone := 192.168.1.100
+ios := 3.2
 
-all: Cydia exec
+flags := 
+link := 
 
-test: all
-       scp -p Cydia saurik@$(iPhone):/dat
-       ssh saurik@$(iPhone) /dat/Cydia
+#dpkg := /Library/Cydia/bin/dpkg-deb -Zlzma
+dpkg := dpkg-deb
 
-exec: exec.mm makefile
-       arm-apple-darwin-g++ -Wall -Werror -o $@ $< -framework Foundation -framework CoreFoundation -lobjc
+flags += -F/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS$(ios).sdk/System/Library/PrivateFrameworks
+flags += -I. -isystem sysroot/usr/include -Lsysroot/usr/lib
+flags += -Wall -Werror -Wno-deprecated-declarations
+flags += -fmessage-length=0
+flags += -g0 -O2
+flags += -fobjc-call-cxx-cdtors -fobjc-exceptions
 
-Cydia-1.2: Cydia.mm *.h makefile
-       arm-apple-darwin-g++ -fobjc-abi-version=2 -fobjc-call-cxx-cdtors -g3 -O2 -Wall -o $@ $< -framework UIKit -framework IOKit -framework Foundation -framework CoreFoundation -framework CoreGraphics -framework GraphicsServices -lobjc -lapt-pkg -lpcre -fobjc-exceptions -save-temps -F $(Aspen)/System/Library/Frameworks -I $(Aspen)/usr/include -DTARGET_OS_EMBEDDED -DSRK_ASPEN
+link += -framework CoreFoundation
+link += -framework CoreGraphics
+link += -framework Foundation
+link += -framework GraphicsServices
+link += -framework IOKit
+link += -framework JavaScriptCore
+link += -framework QuartzCore
+link += -framework SystemConfiguration
+link += -framework UIKit
+link += -framework WebCore
+link += -framework WebKit
 
-Cydia: Cydia.mm *.h makefile
-       arm-apple-darwin-g++ -fobjc-call-cxx-cdtors -g3 -O2 -Wall -Werror -o $@ $< -framework UIKit -framework IOKit -framework Foundation -framework CoreFoundation -framework CoreGraphics -framework GraphicsServices -lobjc -lapt-pkg -lpcre -fobjc-exceptions
+link += -lapr-1
+link += -lapt-pkg
+link += -lpcre
+
+link += -multiply_defined suppress
+
+all: Cydia
+
+clean:
+       rm -f Cydia
+
+Cydia: Cydia.mm Reachability.mm UICaboodle/*.mm iPhonePrivate.h
+       cycc -r4.2 -i$(ios) -o$@ -- $(filter %.mm,$^) $(flags) $(link)
+
+package: Cydia
+       sudo rm -rf _
+       mkdir -p _/var/lib/cydia
+       
+       mkdir -p _/usr/libexec
+       cp -a Library _/usr/libexec/cydia
+       cp -a sysroot/usr/bin/du _/usr/libexec/cydia
+       
+       mkdir -p _/System/Library
+       cp -a LaunchDaemons _/System/Library/LaunchDaemons
+       
+       mkdir -p _/Applications
+       cp -a Cydia.app _/Applications/Cydia.app
+       cp -a Cydia _/Applications/Cydia.app/Cydia_
+       
+       mkdir -p _/System/Library/PreferenceBundles
+       cp -a CydiaSettings.bundle _/System/Library/PreferenceBundles/CydiaSettings.bundle
+       
+       mkdir -p _/DEBIAN
+       echo "$$(cat control)"$$'\nInstalled-Size: '"$$(du -s _ | cut -f 1)" > _/DEBIAN/control
+       
+       sudo chown -R 0 _
+       sudo chgrp -R 0 _
+       sudo chmod 6755 _/Applications/Cydia.app/Cydia_
+       
+       $(dpkg) -b _ $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb
+
+.PHONY: all clean sign