-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (21 loc) · 801 Bytes
/
Makefile
File metadata and controls
31 lines (21 loc) · 801 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
29
30
31
THEOS_DEVICE_IP = localhost -o StrictHostKeyChecking=no
THEOS_DEVICE_PORT = 2222
ARCHS = arm64 arm64e
ifeq ($(THEOS_PACKAGE_SCHEME), rootless)
TARGET = iphone:clang:14.5:15.0 # theos includes the iOS 14.5 SDK by default, it's ok
else
TARGET = iphone:clang:14.5:9.0
endif
INSTALL_TARGET_PROCESSES = lockdownd
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = XcodeRootDebug
XcodeRootDebug_FILES = Tweak.x
XcodeRootDebug_CFLAGS = -fobjc-arc
include $(THEOS_MAKE_PATH)/tweak.mk
BUNDLE_NAME = XcodeRootDebugPrefs
XcodeRootDebugPrefs_FILES = XRDRootListController.m
XcodeRootDebugPrefs_FRAMEWORKS = UIKit
XcodeRootDebugPrefs_PRIVATE_FRAMEWORKS = Preferences
XcodeRootDebugPrefs_INSTALL_PATH = /Library/PreferenceBundles
XcodeRootDebugPrefs_CFLAGS = -fobjc-arc
include $(THEOS_MAKE_PATH)/bundle.mk