]> git.saurik.com Git - cycript.git/blame_incremental - makefile
Further memory management improvements, fixed some weird vtable bugs with CYThis...
[cycript.git] / makefile
... / ...
CommitLineData
1ifndef PKG_TARG
2target :=
3else
4target := $(PKG_TARG)-
5endif
6
7package:
8
9flags := -mthumb -g3 -O0 -Wall -Werror -I. -fno-common
10flags += -F${PKG_ROOT}/System/Library/PrivateFrameworks
11
12all: cycript libcycript.dylib libcycript.plist
13
14clean:
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
17libcycript.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
32Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.y
33 bison -v --report=state $<
34
35lex.cy.c: Cycript.l
36 flex $<
37
38Struct.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
47Cycript.tab.o: Cycript.tab.cc Cycript.tab.hh Parser.hpp Pooling.hpp
48 $(target)g++ $(flags) -c -o $@ $<
49
50lex.cy.o: lex.cy.c Cycript.tab.hh Parser.hpp Pooling.hpp
51 $(target)g++ $(flags) -c -o $@ $<
52
53Output.o: Output.cpp Parser.hpp Pooling.hpp
54 $(target)g++ $(flags) -c -o $@ $<
55
56Library.o: Library.mm Cycript.tab.hh Parser.hpp Pooling.hpp Struct.hpp cycript.hpp
57 $(target)g++ $(flags) -c -o $@ $<
58
59Application.o: Application.cpp Cycript.tab.hh Parser.hpp Pooling.hpp cycript.hpp
60 $(target)g++ $(flags) -c -o $@ $<
61
62libcycript.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
66cycript: Application.o libcycript.dylib
67 $(target)g++ $(flags) -o $@ $(filter %.o,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc libcycript.dylib -lreadline -framework JavaScriptCore -lapr-1
68 ldid -S cycript
69
70package: 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
89test: 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