Files
clang-p2996/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/Makefile
Frederic Riss 58417b3390 TestMTCSimple: Make Makefile portable.
r374262 left out the Makefile changes needed to cross compile this test.

llvm-svn: 374451
2019-10-10 21:21:16 +00:00

10 lines
253 B
Makefile

OBJC_SOURCES := main.m
ifeq ($(findstring MacOSX.platform,$(shell xcrun --show-sdk-path)),MacOSX.platform)
UI_FRAMEWORK = AppKit
else
UI_FRAMEWORK = UIKit
endif
LD_EXTRAS = -lobjc -framework Foundation -framework $(UI_FRAMEWORK)
include Makefile.rules