]> git.saurik.com Git - cydia.git/blobdiff - makefile
Rewrote the build environment from scratch.
[cydia.git] / makefile
index 21674a8736862e7b1a69f6b757163145e17a9744..ddb9024a8fdba0d4f4468921ea8b76e57cb0c32f 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,18 +1,67 @@
-ifndef PKG_TARG
-target :=
-else
-target := $(PKG_TARG)-
-endif
+ios := 3.2
 
-all: Cydia exec
+flags := 
+link := 
+
+#dpkg := /Library/Cydia/bin/dpkg-deb -Zlzma
+dpkg := dpkg-deb
+
+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
+
+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
+
+link += -lapr-1
+link += -lapt-pkg
+link += -lpcre
+
+link += -multiply_defined suppress
+
+all: Cydia
 
 clean:
-       rm -f Cydia exec
+       rm -f Cydia
 
-exec: exec.mm makefile
-       $(target)g++ -Wall -Werror -o $@ $< -framework Foundation -framework CoreFoundation -lobjc
+Cydia: Cydia.mm Reachability.mm UICaboodle/*.mm
+       cycc -r4.2 -i$(ios) -o$@ -- $(filter %.mm,$^) $(flags) $(link)
 
-Cydia: Cydia.mm ../uicaboodle.m/*.mm *.h makefile
-       $(target)g++ -I../uicaboodle.m -fobjc-call-cxx-cdtors -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework IOKit -framework CoreFoundation -framework Foundation -framework CoreGraphics -framework GraphicsServices -framework LayerKit -lobjc -lapt-pkg -lpcre -fobjc-exceptions -I/apl/i20 -F$${PKG_ROOT}/System/Library/PrivateFrameworks
+package: Cydia
+       rm -rf _
+       mkdir -p _/var/lib/cydia
+       
+       mkdir -p _/usr/libexec
+       cp -a Library _/usr/libexec/cydia
+       # XXX: fix du
+       #cp -a /apl/tel/dest/iphoneos-arm/coreutils/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_
+       chmod 6755 _/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
+       
+       $(dpkg) -b _ $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb
 
-.PHONY: all clean
+.PHONY: all clean sign