9 flags := -framework CFNetwork -framework JavaScriptCore -framework WebCore -install_name /usr/lib/libcycript.dylib -I.
10 menes := $(shell cd ~; pwd)/menes
12 link := -framework CoreFoundation -framework Foundation -F${PKG_ROOT}/System/Library/PrivateFrameworks -L$(menes)/mobilesubstrate -lsubstrate -lapr-1 -lffi
14 all: cycript libcycript.dylib libcycript.plist
17 rm -f libcycript.dylib cycript libcycript.plist Struct.hpp
19 libcycript.plist: Bridge.def makefile
20 sed -e 's/^C/0/;s/^F/1/;s/^V/2/' Bridge.def | while read -r line; do \
21 if [[ $$line == '' ]]; then \
25 if [[ $$1 =~ [#fl] ]]; then \
28 echo "$$2 = ($$1, \"$$3\");"; \
32 $$($(target)gcc -print-prog-name=cc1obj) -print-objc-runtime-info </dev/null >$@
34 libcycript.dylib: Library.mm makefile $(menes)/mobilesubstrate/substrate.h sig/*.[ch]pp Struct.hpp
35 $(target)g++ -dynamiclib -mthumb -g0 -O2 -Wall -Werror -o $@ $(filter %.cpp,$^) $(filter %.mm,$^) -lobjc -I$(menes)/mobilesubstrate $(link) $(flags)
38 cycript: Application.mm libcycript.dylib
39 $(target)g++ -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc libcycript.dylib
44 mkdir -p package/DEBIAN
45 cp -a control package/DEBIAN
46 mkdir -p package/Library/MobileSubstrate/DynamicLibraries
47 if [[ -e Settings.plist ]]; then \
48 mkdir -p package/Library/PreferenceLoader/Preferences; \
49 cp -a Settings.png package/Library/PreferenceLoader/Preferences/CycriptIcon.png; \
50 cp -a Settings.plist package/Library/PreferenceLoader/Preferences/Cycript.plist; \
52 if [[ -e Tweak.plist ]]; then cp -a Tweak.plist package/Library/MobileSubstrate/DynamicLibraries/Cycript.plist; fi
53 #cp -a Cycript.dylib package/Library/MobileSubstrate/DynamicLibraries
54 mkdir -p package/usr/{bin,lib}
55 cp -a libcycript.dylib package/usr/lib
56 ln -s /usr/lib/libcycript.dylib package/Library/MobileSubstrate/DynamicLibraries/Cycript.dylib
57 cp -a cycript package/usr/bin
58 cp -a libcycript.plist package/usr/lib
59 dpkg-deb -b package $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb
61 .PHONY: all clean extra package