]>
Commit | Line | Data |
---|---|---|
1e7ce557 JF |
1 | flags += -F${PKG_ROOT}/System/Library/PrivateFrameworks |
2 | ||
3 | all += Cycript.$(dll) #cyrver | |
4 | ||
5 | arch := iphoneos-arm | |
9185d5ef | 6 | ldid := ldid -S |
dfa452c2 | 7 | console += -framework UIKit |
1e7ce557 JF |
8 | |
9 | Cycript.$(dll): Connector.o | |
10 | $(target)g++ $(flags) -dynamiclib -o $@ $(filter %.o,$^) \ | |
11 | -lobjc -lapr-1 -lsubstrate \ | |
12 | -framework CoreFoundation | |
13 | ldid -S $@ | |
9185d5ef JF |
14 | |
15 | cyrver: Server.o | |
16 | $(target)g++ $(flags) -o $@ $(filter %.o,$^) \ | |
17 | -lapr-1 -lsubstrate -framework CFNetwork | |
18 | $(ldid) $@ |