TrollStore/RootHelper/Makefile

19 lines
809 B
Makefile
Raw Normal View History

2023-11-27 00:45:12 +08:00
TARGET := iphone:clang:16.4: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-01-26 07:39:58 +08:00
trollstorehelper_PRIVATE_FRAMEWORKS = SpringBoardServices BackBoardServices MobileContainerManager
2022-09-02 23:19:48 +08:00
include $(THEOS_MAKE_PATH)/tool.mk