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