-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (22 loc) · 724 Bytes
/
Makefile
File metadata and controls
28 lines (22 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
ARCHS = armv7 armv7s arm64
TARGET = iphone:clang:latest:7.1
CFLAGS = -fobjc-arc
THEOS_PACKAGE_DIR_NAME = debs
include $(THEOS)/makefiles/common.mk
FRAMEWORK_NAME = SettingsKit
SettingsKit_FILES = SKTintedControlCell.m \
SKTintedCell.m \
SKTintedSwitchCell.m \
SKTintedListController.m \
SKSharedHelper.m \
SKSpecifierParser.m \
SKPersonCell.m \
SKStandardController.m \
SKListItemsController.m
SettingsKit_PRIVATE_FRAMEWORKS = Preferences
SettingsKit_INSTALL_PATH = /Library/Frameworks
SettingsKit_FRAMEWORKS = UIKit Social CoreGraphics MessageUI QuartzCore
include $(THEOS_MAKE_PATH)/framework.mk
after-install::
install.exec "killall -9 Preferences"
./install