-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (21 loc) · 699 Bytes
/
Makefile
File metadata and controls
29 lines (21 loc) · 699 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
export ARCHS = arm64 arm64e
export SDKVERSION = 14.5
export SYSROOT = $(THEOS)/sdks/iPhoneOS14.5.sdk
ifeq ($(THEOS_PACKAGE_SCHEME), rootless)
export TARGET = iphone:clang:latest:14.0
else
export TARGET = iphone:clang:latest:13.0
endif
INSTALL_TARGET_PROCESSES = SpringBoard
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = Vaon
Vaon_FILES = Vaon.xm
Vaon_CFLAGS = -fobjc-arc -Wno-deprecated-declarations
Vaon_FRAMEWORKS += QuartzCore
include $(THEOS_MAKE_PATH)/tweak.mk
SUBPROJECTS += vaonprefs
include $(THEOS_MAKE_PATH)/aggregate.mk
final_package_rootful: clean
$(MAKE) package FINALPACKAGE=1
final_package_rootless: clean
$(MAKE) package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=rootless