]> git.saurik.com Git - cycript.git/blob - makefile
Drastic improvements to memory management, handle many more minimization corner cases...
[cycript.git] / makefile
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 sed -e 's/^C/0/;s/^F/1/;s/^V/2/' Bridge.def | while read -r line; do \
20 if [[ $$line == '' ]]; then \
21 continue; \
22 fi; \
23 set $$line; \
24 if [[ $$1 =~ [#fl:] ]]; then \
25 continue; \
26 fi; \
27 echo "$$2 = ($$1, \"$$3\");"; \
28 done; \
29 grep ^: Bridge.def | sed -e 's/^: \([^ ]*\) \(.*\)/":\1" = "\2";/'; \
30 } >$@
31
32 Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.y
33 bison -v --report=state $<
34
35 lex.cy.c: Cycript.l
36 flex $<
37
38 Struct.hpp:
39 $$($(target)gcc -print-prog-name=cc1obj) -print-objc-runtime-info </dev/null >$@
40
41 #Parser.hpp: Parser.py Parser.dat
42 # ./Parser.py <Parser.dat >$@
43
44 %.o: sig/%.cpp
45 $(target)g++ $(flags) -c -o $@ $<
46
47 Cycript.tab.o: Cycript.tab.cc Cycript.tab.hh Parser.hpp Pooling.hpp
48 $(target)g++ $(flags) -c -o $@ $<
49
50 lex.cy.o: lex.cy.c Cycript.tab.hh Parser.hpp Pooling.hpp
51 $(target)g++ $(flags) -c -o $@ $<
52
53 Output.o: Output.cpp Parser.hpp Pooling.hpp
54 $(target)g++ $(flags) -c -o $@ $<
55
56 Library.o: Library.mm Cycript.tab.hh Parser.hpp Pooling.hpp Struct.hpp cycript.hpp
57 $(target)g++ $(flags) -c -o $@ $<
58
59 Application.o: Application.mm Cycript.tab.hh Parser.hpp Pooling.hpp cycript.hpp
60 $(target)g++ $(flags) -c -o $@ $<
61
62 libcycript.dylib: ffi_type.o parse.o Output.o Cycript.tab.o lex.cy.o Library.o
63 $(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
64 ldid -S $@
65
66 cycript: Application.o libcycript.dylib
67 $(target)g++ $(flags) -o $@ $(filter %.o,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc libcycript.dylib -lreadline -framework JavaScriptCore
68 ldid -S cycript
69
70 package: all
71 rm -rf package
72 mkdir -p package/DEBIAN
73 cp -a control package/DEBIAN
74 mkdir -p package/Library/MobileSubstrate/DynamicLibraries
75 if [[ -e Settings.plist ]]; then \
76 mkdir -p package/Library/PreferenceLoader/Preferences; \
77 cp -a Settings.png package/Library/PreferenceLoader/Preferences/CycriptIcon.png; \
78 cp -a Settings.plist package/Library/PreferenceLoader/Preferences/Cycript.plist; \
79 fi
80 if [[ -e Tweak.plist ]]; then cp -a Tweak.plist package/Library/MobileSubstrate/DynamicLibraries/Cycript.plist; fi
81 #cp -a Cycript.dylib package/Library/MobileSubstrate/DynamicLibraries
82 mkdir -p package/usr/{bin,lib}
83 cp -a libcycript.dylib package/usr/lib
84 #ln -s /usr/lib/libcycript.dylib package/Library/MobileSubstrate/DynamicLibraries/Cycript.dylib
85 cp -a cycript package/usr/bin
86 cp -a libcycript.plist package/usr/lib
87 dpkg-deb -b package $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb
88
89 test: package
90 dpkg -i $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb
91 cycript /Applications/HelloCycript.app/HelloCycript
92
93 .PHONY: all clean extra package