]>
Commit | Line | Data |
---|---|---|
1 | ifndef PKG_TARG | |
2 | target := | |
3 | else | |
4 | target := $(PKG_TARG)- | |
5 | endif | |
6 | ||
7 | package: | |
8 | ||
9 | flags := -mthumb -g3 -O0 -Wall -Werror -I. -fno-common | |
10 | flags += -F${PKG_ROOT}/System/Library/PrivateFrameworks | |
11 | ||
12 | all: cycript libcycript.dylib libcycript.plist | |
13 | ||
14 | clean: | |
15 | rm -f *.o libcycript.dylib cycript libcycript.plist Struct.hpp lex.cy.c Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh | |
16 | ||
17 | libcycript.plist: Bridge.def | |
18 | { \ | |
19 | echo '({'; \ | |
20 | sed -e 's/^C/0/;s/^F/1/;s/^V/2/' Bridge.def | while read -r line; do \ | |
21 | if [[ $$line == '' ]]; then \ | |
22 | continue; \ | |
23 | fi; \ | |
24 | set $$line; \ | |
25 | if [[ $$1 =~ [#fl:] ]]; then \ | |
26 | continue; \ | |
27 | fi; \ | |
28 | echo "$$2 = ($$1, \"$${3//\"/\\\"}\");"; \ | |
29 | done; \ | |
30 | echo '},{'; \ | |
31 | grep ^: Bridge.def | sed -e 's/^: \([^ ]*\) \(.*\)/"\1" = "\2";/'; \ | |
32 | echo '})'; \ | |
33 | } >$@ | |
34 | ||
35 | Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.y | |
36 | bison -v --report=state $< | |
37 | ||
38 | lex.cy.c: Cycript.l | |
39 | flex $< | |
40 | ||
41 | Struct.hpp: | |
42 | $$($(target)gcc -print-prog-name=cc1obj) -print-objc-runtime-info </dev/null >$@ | |
43 | ||
44 | #Parser.hpp: Parser.py Parser.dat | |
45 | # ./Parser.py <Parser.dat >$@ | |
46 | ||
47 | %.o: sig/%.cpp | |
48 | $(target)g++ $(flags) -c -o $@ $< | |
49 | ||
50 | Cycript.tab.o: Cycript.tab.cc Cycript.tab.hh Parser.hpp Pooling.hpp | |
51 | $(target)g++ $(flags) -c -o $@ $< | |
52 | ||
53 | lex.cy.o: lex.cy.c Cycript.tab.hh Parser.hpp Pooling.hpp | |
54 | $(target)g++ $(flags) -c -o $@ $< | |
55 | ||
56 | Output.o: Output.cpp Parser.hpp Pooling.hpp | |
57 | $(target)g++ $(flags) -c -o $@ $< | |
58 | ||
59 | Library.o: Library.mm Cycript.tab.hh Parser.hpp Pooling.hpp Struct.hpp cycript.hpp | |
60 | $(target)g++ $(flags) -c -o $@ $< | |
61 | ||
62 | Application.o: Application.mm Cycript.tab.hh Parser.hpp Pooling.hpp cycript.hpp | |
63 | $(target)g++ $(flags) -c -o $@ $< | |
64 | ||
65 | libcycript.dylib: ffi_type.o parse.o Output.o Cycript.tab.o lex.cy.o Library.o | |
66 | $(target)g++ $(flags) -dynamiclib -o $@ $(filter %.o,$^) -lobjc -framework CFNetwork -framework JavaScriptCore -framework WebCore -install_name /usr/lib/libcycript.dylib -framework CoreFoundation -framework Foundation -L$(menes)/mobilesubstrate -lsubstrate -lapr-1 -lffi -framework UIKit | |
67 | ldid -S $@ | |
68 | ||
69 | cycript: Application.o libcycript.dylib | |
70 | $(target)g++ $(flags) -o $@ $(filter %.o,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc libcycript.dylib -lreadline -framework JavaScriptCore -lapr-1 | |
71 | ldid -S cycript | |
72 | ||
73 | package: all | |
74 | rm -rf package | |
75 | mkdir -p package/DEBIAN | |
76 | cp -a control package/DEBIAN | |
77 | mkdir -p package/Library/MobileSubstrate/DynamicLibraries | |
78 | if [[ -e Settings.plist ]]; then \ | |
79 | mkdir -p package/Library/PreferenceLoader/Preferences; \ | |
80 | cp -a Settings.png package/Library/PreferenceLoader/Preferences/CycriptIcon.png; \ | |
81 | cp -a Settings.plist package/Library/PreferenceLoader/Preferences/Cycript.plist; \ | |
82 | fi | |
83 | if [[ -e Tweak.plist ]]; then cp -a Tweak.plist package/Library/MobileSubstrate/DynamicLibraries/Cycript.plist; fi | |
84 | #cp -a Cycript.dylib package/Library/MobileSubstrate/DynamicLibraries | |
85 | mkdir -p package/usr/{bin,lib} | |
86 | cp -a libcycript.dylib package/usr/lib | |
87 | #ln -s /usr/lib/libcycript.dylib package/Library/MobileSubstrate/DynamicLibraries/Cycript.dylib | |
88 | cp -a cycript package/usr/bin | |
89 | cp -a libcycript.plist package/usr/lib | |
90 | dpkg-deb -b package $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb | |
91 | ||
92 | test: package | |
93 | dpkg -i $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb | |
94 | cycript test.cy | |
95 | ||
96 | .PHONY: all clean extra package |