diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..9ffa5e9 --- /dev/null +++ b/makefile @@ -0,0 +1,10 @@ +iPhone := 192.168.1.100 + +all: Cydia + +test: all + scp -p Cydia saurik@$(iPhone):/dat + ssh saurik@$(iPhone) /dat/Cydia + +Cydia: *.mm makefile + arm-apple-darwin-g++ -fobjc-call-cxx-cdtors -g3 -O2 -Wall -Werror -o $@ $< -framework UIKit -framework Foundation -framework CoreFoundation -framework CoreGraphics -framework GraphicsServices -lobjc -lapt-pkg -lpcre -fobjc-exceptions |