Files
clang-p2996/lldb/test/lang/objc/objc-static-method-stripped/Makefile
Sean Callanan 7f5ac65fb9 Added support for pulling Objective-C class symbols
out of the runtime.  This allows calling static methods
on classes whose symbols have been stripped out of the
binary.

<rdar://problem/12042992>

llvm-svn: 180210
2013-04-24 19:07:29 +00:00

16 lines
280 B
Makefile

LEVEL = ../../../make
OBJC_SOURCES := static.m
LDFLAGS = $(CFLAGS) -lobjc -framework Foundation
default: a.out.stripped
a.out.stripped: a.out.dSYM
strip -o a.out.stripped a.out
clean::
rm -f a.out.stripped
rm -rf a.out.stripped.dSYM
include $(LEVEL)/Makefile.rules