aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile
blob: 81e7f12dea2b2524048d8606cfe0fd89e0060ddf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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