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>
11 lines
224 B
Makefile
11 lines
224 B
Makefile
OBJC_SOURCES := static.m
|
|
LD_EXTRAS := -lobjc -framework Foundation
|
|
|
|
default: a.out.stripped
|
|
|
|
a.out.stripped: a.out.dSYM
|
|
$(STRIP) -o a.out.stripped a.out
|
|
ln -sf a.out.dSYM a.out.stripped.dSYM
|
|
|
|
include Makefile.rules
|