Mercurial > hg > CbC > CbC_llvm
annotate lldb/test/API/functionalities/mtc/simple/Makefile @ 180:680fa57a2f20
fix compile errors.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 30 May 2020 17:44:06 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 OBJC_SOURCES := main.m |
2 UI_FRAMEWORK = AppKit | |
3 | |
4 ifneq ("$(SDKROOT)", "") | |
5 ifeq (,$(findstring macOS,$(SDKROOT))) | |
6 ifeq (,$(findstring MacOS,$(SDKROOT))) | |
7 UI_FRAMEWORK = UIKit | |
8 endif | |
9 endif | |
10 endif | |
11 | |
12 LD_EXTRAS = -lobjc -framework Foundation -framework $(UI_FRAMEWORK) | |
13 | |
14 include Makefile.rules |