]> git.saurik.com Git - cydia.git/blob - makefile
Various interface cleanups.
[cydia.git] / makefile
1 ifndef PKG_TARG
2 target :=
3 else
4 target := $(PKG_TARG)-
5 endif
6
7 all: Cydia
8
9 clean:
10 rm -f Cydia
11
12 Cydia: Cydia.mm ../uicaboodle.m/*.m ../uicaboodle.m/*.mm ../mobilesubstrate/*.h #makefile
13 $(target)g++ -march=armv6 -mcpu=arm1176jzf-s -I../uicaboodle.m -I../mobilesubstrate -fobjc-call-cxx-cdtors -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework IOKit -framework CoreFoundation -framework Foundation -framework CoreGraphics -framework GraphicsServices -framework MessageUI -framework QuartzCore -framework JavaScriptCore -framework WebCore -framework WebKit -lobjc -lapt-pkg -lpcre -fobjc-exceptions -F"$${PKG_ROOT}"/System/Library/PrivateFrameworks -multiply_defined suppress
14
15 sign: Cydia
16 CODESIGN_ALLOCATE=$$(which "$(target)codesign_allocate") ldid -Slaunch.xml Cydia
17
18 package: sign
19 rm -rf _
20 mkdir -p _/var/lib/cydia
21
22 mkdir -p _/usr/libexec
23 svn export Library _/usr/libexec/cydia
24
25 mkdir -p _/System/Library
26 svn export LaunchDaemons _/System/Library/LaunchDaemons
27
28 mkdir -p _/Applications
29 svn export Cydia.app _/Applications/Cydia.app
30 cp -a Cydia _/Applications/Cydia.app/Cydia_
31 chmod 6755 _/Applications/Cydia.app/Cydia_
32
33 mkdir -p _/System/Library/PreferenceBundles
34 svn export CydiaSettings.bundle _/System/Library/PreferenceBundles/CydiaSettings.bundle
35
36 mkdir -p _/DEBIAN
37 echo "$$(cat control)"$$'\nInstalled-Size: '"$$(du -s _ | cut -f 1)" > _/DEBIAN/control
38
39 dpkg-deb -b _ $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb
40
41 .PHONY: all clean sign