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