diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-01-20 19:43:59 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2008-01-20 19:43:59 +0000 |
commit | dc5812ecbee060e16932ea9f8b2a9ea29dfcb2d9 (patch) | |
tree | c1826777b870cb4d5667c644f919cd92d4531378 /makefile |
Terrified I might lose this code ;P.
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 |