1 DYLIB_NAME
:= InternalDefiner
2 DYLIB_OBJC_SOURCES
:= InternalDefiner.m
5 LD_EXTRAS
= -framework Foundation
7 all: a.out libInternalDefiner.dylib stripped
11 ifeq "$(MAKE_DSYM)" "YES"
15 stripped
: a.out libInternalDefiner.dylib
17 strip -Sx a.out
-o stripped
/a.out
18 strip -Sx libInternalDefiner.dylib
-o stripped
/libInternalDefiner.dylib
19 ifneq "$(CODESIGN)" ""
20 $(CODESIGN
) -fs
- stripped
/a.out
22 ifneq "$(CODESIGN)" ""
23 $(CODESIGN
) -fs
- stripped
/libInternalDefiner.dylib
25 ifeq "$(MAKE_DSYM)" "YES"
26 cp
-r a.out.dSYM stripped
/a.out.dSYM