mirror of
https://github.com/YTLitePlus/YTLitePlus.git
synced 2026-03-16 05:15:52 +00:00
YTLitePlus/YTLitePlus has been deprecated. This replaces the entire codebase with the active upstream project dayanch96/YTLite. https://claude.ai/code/session_01FD8kBzc7yv5Fdf9G7Z2ZkE
20 lines
485 B
Makefile
20 lines
485 B
Makefile
ifeq ($(ROOTLESS),1)
|
|
THEOS_PACKAGE_SCHEME=rootless
|
|
else ifeq ($(ROOTHIDE),1)
|
|
THEOS_PACKAGE_SCHEME=roothide
|
|
endif
|
|
|
|
DEBUG=0
|
|
FINALPACKAGE=1
|
|
ARCHS = arm64
|
|
PACKAGE_VERSION = 3.0.1
|
|
TARGET := iphone:clang:16.5:13.0
|
|
|
|
include $(THEOS)/makefiles/common.mk
|
|
|
|
TWEAK_NAME = YTLite
|
|
$(TWEAK_NAME)_FRAMEWORKS = UIKit Foundation SystemConfiguration
|
|
$(TWEAK_NAME)_CFLAGS = -fobjc-arc -DTWEAK_VERSION=$(PACKAGE_VERSION)
|
|
$(TWEAK_NAME)_FILES = $(wildcard *.x Utils/*.m)
|
|
|
|
include $(THEOS_MAKE_PATH)/tweak.mk
|