blob: f27f57aeebf36ce636918fff82f9b1fd390bd9a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
OBJC_SOURCES := main.m
UI_FRAMEWORK = AppKit
ifneq ("$(SDKROOT)", "")
ifeq (,$(findstring macOS,$(SDKROOT)))
ifeq (,$(findstring MacOS,$(SDKROOT)))
UI_FRAMEWORK = UIKit
endif
endif
endif
LD_EXTRAS = -lobjc -framework Foundation -framework $(UI_FRAMEWORK)
include Makefile.rules
|