]> git.saurik.com Git - cydia.git/blame_incremental - makefile
Fix the warnings when building with AlwaysReload=0, and fix the action button for...
[cydia.git] / makefile
... / ...
CommitLineData
1ios := 3.2
2
3flags :=
4link :=
5
6#dpkg := /Library/Cydia/bin/dpkg-deb -Zlzma
7dpkg := dpkg-deb
8
9flags += -F/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS$(ios).sdk/System/Library/PrivateFrameworks
10flags += -I. -isystem sysroot/usr/include -Lsysroot/usr/lib
11flags += -Wall -Werror -Wno-deprecated-declarations
12flags += -fmessage-length=0
13flags += -g0 -O2
14flags += -fobjc-call-cxx-cdtors -fobjc-exceptions
15
16link += -framework CoreFoundation
17link += -framework CoreGraphics
18link += -framework Foundation
19link += -framework GraphicsServices
20link += -framework IOKit
21link += -framework JavaScriptCore
22link += -framework QuartzCore
23link += -framework SystemConfiguration
24link += -framework UIKit
25link += -framework WebCore
26link += -framework WebKit
27
28link += -lapr-1
29link += -lapt-pkg
30link += -lpcre
31
32link += -multiply_defined suppress
33
34all: Cydia
35
36clean:
37 rm -f Cydia
38
39Cydia: Cydia.mm Reachability.mm UICaboodle/*.mm iPhonePrivate.h
40 cycc -r4.2 -i$(ios) -o$@ -- $(filter %.mm,$^) $(flags) $(link)
41
42package: Cydia
43 sudo rm -rf _
44 mkdir -p _/var/lib/cydia
45
46 mkdir -p _/usr/libexec
47 cp -a Library _/usr/libexec/cydia
48 cp -a sysroot/usr/bin/du _/usr/libexec/cydia
49
50 mkdir -p _/System/Library
51 cp -a LaunchDaemons _/System/Library/LaunchDaemons
52
53 mkdir -p _/Applications
54 cp -a Cydia.app _/Applications/Cydia.app
55 cp -a Cydia _/Applications/Cydia.app/Cydia_
56
57 mkdir -p _/System/Library/PreferenceBundles
58 cp -a CydiaSettings.bundle _/System/Library/PreferenceBundles/CydiaSettings.bundle
59
60 mkdir -p _/DEBIAN
61 echo "$$(cat control)"$$'\nInstalled-Size: '"$$(du -s _ | cut -f 1)" > _/DEBIAN/control
62
63 sudo chown -R 0 _
64 sudo chgrp -R 0 _
65 sudo chmod 6755 _/Applications/Cydia.app/Cydia_
66
67 $(dpkg) -b _ $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb
68
69.PHONY: all clean sign