brintos

brintos / llvm-project-archived public Read only

0
0
Text · 290 B · f27f57a Raw
15 lines · plain
1OBJC_SOURCES := main.m2UI_FRAMEWORK = AppKit3 4ifneq ("$(SDKROOT)", "")5	ifeq (,$(findstring macOS,$(SDKROOT)))6		ifeq (,$(findstring MacOS,$(SDKROOT)))7			UI_FRAMEWORK = UIKit8		endif9	endif10endif11 12LD_EXTRAS = -lobjc -framework Foundation -framework $(UI_FRAMEWORK)13 14include Makefile.rules15