TrollStore/RootHelper/Makefile

20 lines
872 B
Makefile
Raw Normal View History

TARGET := iphone:clang:16.5:14.0
2022-09-02 23:19:48 +08:00
ARCHS = arm64
2023-11-27 03:43:30 +08:00
TARGET_CODESIGN = ../Exploits/fastPathSign/fastPathSign
2022-09-02 23:19:48 +08:00
include $(THEOS)/makefiles/common.mk
TOOL_NAME = trollstorehelper
2023-11-27 03:43:30 +08:00
trollstorehelper_FILES = $(wildcard *.m) $(wildcard ../Shared/*.m) ../Exploits/fastPathSign/src/coretrust_bug.c ../Exploits/fastPathSign/src/codesign.m
trollstorehelper_CFLAGS = -fobjc-arc -I../Shared $(shell pkg-config --cflags libcrypto) -Iexternal/include -I../Exploits/fastPathSign/src
trollstorehelper_LDFLAGS = -Lexternal/lib -lcrypto -lchoma
2023-11-27 03:43:30 +08:00
trollstorehelper_CODESIGN_FLAGS = --entitlements entitlements.plist
2022-09-02 23:19:48 +08:00
trollstorehelper_INSTALL_PATH = /usr/local/bin
trollstorehelper_LIBRARIES = archive
2023-11-30 01:36:31 +08:00
trollstorehelper_FRAMEWORKS = CoreTelephony
2023-12-31 02:40:05 +08:00
trollstorehelper_PRIVATE_FRAMEWORKS = SpringBoardServices BackBoardServices MobileContainerManager FrontBoardServices
2022-09-02 23:19:48 +08:00
include $(THEOS_MAKE_PATH)/tool.mk