]>
Commit | Line | Data |
---|---|---|
1 | # XXX: objective-c exists on non-Darwin | |
2 | ||
3 | dll := dylib | |
4 | link += -lobjc -framework CoreFoundation | |
5 | console += -framework Foundation | |
6 | library += -install_name /usr/lib/libcycript.$(dll) | |
7 | library += -framework Foundation | |
8 | library += -framework JavaScriptCore | |
9 | # XXX: do I just need WebCore? | |
10 | library += -framework WebKit | |
11 | library += -liconv | |
12 | ||
13 | flags += -DCY_ATTACH | |
14 | code += Handler.o | |
15 | inject += Mach/Inject.o | |
16 | Mach/Inject.o: Trampoline.t.hpp Baton.hpp | |
17 | ||
18 | %.t.hpp: %.t.cpp | |
19 | $(target)gcc -c -fno-exceptions -Iinclude -o $*.t.o $< && { file=($$($(target)otool -l $*.t.o | sed -e 'x; /^1/ { x; /^ *filesize / { s/^.* //; p; }; /^ *fileoff / { s/^.* //; p; }; x; }; x; /^ *cmd LC_SEGMENT$$/ { s/.*/1/; x; }; d;')); od -t x1 -j $${file[0]} -N $${file[1]} $*.t.o | sed -e 's/^[^ ]*//' | tr $$'\n' ' ' | sed -e 's/ */ /g;s/^ *//;s/ $$//;s/ /,/g;s/\([^,][^,]\)/0x\1/g' | sed -e 's/^/static const char $*_[] = {/;s/$$/};/' && echo && echo "/*" && $(target)otool -vVt $*.t.o && echo "*/"; } >$@ && rm -f $*.t.o | |
20 | ||
21 | include Execute.mk | |
22 | include ObjectiveC.mk |