summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/Makefile
blob: a218ce37e61df3ae6f69efad63f582b57da2bcbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
OBJC_SOURCES := main.m
LD_EXTRAS := -lobjc -framework Foundation

all:        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 Makefile.rules