-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (24 loc) · 897 Bytes
/
Makefile
File metadata and controls
34 lines (24 loc) · 897 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
32
33
export ARCHS = arm64 arm64e armv7
export TARGET := iphone:clang:14.6:7.0
export SYSROOT = $(THEOS)/sdks/iPhoneOS14.5.sdk
INSTALL_TARGET_PROCESSES = SpringBoard
FINALPACKAGE=1
# DEBUG=1
# THEOS_PACKAGE_SCHEME=rootless
ifeq ($(THEOS_PACKAGE_SCHEME),rootless)
NotifakePreferences_INSTALL_PATH = /var/jb/Library/PreferenceBundles
NotifakePreferences_RESOURCES_PATH = /var/jb/Library/PreferenceBundles/NotifakePreferences.bundle
THEOS_DEVICE_IP = 192.168.1.35
else
NotifakePreferences_INSTALL_PATH = /Library/PreferenceBundles
THEOS_DEVICE_IP = 192.168.1.34
endif
TWEAK_NAME = Notifake
Notifake_FILES = Notifake.x
Notifake_CFLAGS = -fobjc-arc
Notifake_FRAMEWORKS = UIKit MobileCoreServices
Notifake_EXTRA_FRAMEWORKS += AltList
SUBPROJECTS += notifakepreferences
include $(THEOS)/makefiles/common.mk
include $(THEOS_MAKE_PATH)/tweak.mk
include $(THEOS_MAKE_PATH)/aggregate.mk