blob: 1b231a5958d266aed4aac1f798c6b55ddb41e1f7 (
plain)
1
2
3
4
5
6
7
8
9
|
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
|