]> git.saurik.com Git - uikittools.git/blob - makefile
Port to Xcode 4.6.3: newer versions of Xcode fail.
[uikittools.git] / makefile
1 uikittools = uiduid uicache uiopen gssc sbdidlaunch sbreload cfversion iomfsetgamma
2
3 all: $(uikittools)
4
5 clean:
6 rm -f $(uikittools) extrainst_
7
8 .PHONY: all clean package
9
10 private := -F/System/Library/PrivateFrameworks
11
12 flags := -Os -Werror
13 flags += -framework CoreFoundation
14 flags += -framework Foundation
15
16 gssc := -lobjc
17 iomfsetgamma := -I. $(private) -framework IOKit -framework IOMobileFramebuffer
18 sbdidlaunch := $(private) -framework SpringBoardServices
19 uicache := -framework UIKit # XXX: UIKit -> MobileCoreServices
20 uiduid := -framework UIKit
21 uiopen := -framework UIKit
22 uishoot := -framework UIKit
23
24 uicache: csstore.cpp
25 extrainst_: csstore.cpp
26
27 %: %.mm
28 cycc -i2.0 -o$@ -- $^ $(flags) $($@)
29 ldid -S$(wildcard $@.xml) $@
30
31 %: %.c
32 cycc -i2.0 -o$@ -- -x c $^ $(flags) $($@)
33 ldid -S$(wildcard $@.xml) $@
34
35 package: all extrainst_
36 sudo rm -rf _
37 mkdir -p _/usr/bin
38 cp -a $(filter-out %.dylib,$(uikittools)) _/usr/bin
39 mkdir -p _/DEBIAN
40 ./control.sh _ >_/DEBIAN/control
41 cp -a extrainst_ _/DEBIAN/
42 mkdir -p debs
43 ln -sf debs/uikittools_$$(./version.sh)_iphoneos-arm.deb uikittools.deb
44 sudo chown -R 0 _
45 sudo chgrp -R 0 _
46 dpkg-deb -b _ uikittools.deb
47 readlink uikittools.deb