Files
clang-p2996/lldb/test/API/lang/objc/objc-ivar-stripped/Makefile
Vladislav Dzhidzhoev b773da0c5e [lldb][test] Use $(STRIP) instead of strip in API tests (Darwin-only change) (#111816)
This makes tests more portable.
Make variables for LLVM utils are passed to `make` on Darwin as well.

Co-authored-by: Vladimir Vereschaka <vvereschaka@accesssoftek.com>
2024-10-10 14:21:25 +02:00

13 lines
242 B
Makefile

OBJC_SOURCES := main.m
LD_EXTRAS := -lobjc -framework Foundation
all: a.out.stripped
include Makefile.rules
a.out.stripped: a.out.dSYM
$(STRIP) -o a.out.stripped a.out
ifneq "$(CODESIGN)" ""
$(CODESIGN) -fs - a.out.stripped
endif