Skip to content

Instantly share code, notes, and snippets.

View miticollo's full-sized avatar
🏠
Working from home

Lorenzo miticollo

🏠
Working from home
View GitHub Profile
@miticollo
miticollo / Makefile
Last active December 31, 2023 09:24 — forked from khanhduytran0/ProcursusTSHelper.c
ProcursusTSHelper.c
IOS_MINVER = 15.0
IOS_CC := $(shell xcrun --sdk iphoneos -f clang)
IOS_CFLAGS := -Wall -Wextra -pipe -Oz -isysroot $(shell xcrun --sdk iphoneos --show-sdk-path) -miphoneos-version-min=$(IOS_MINVER)
IOS_LDFLAGS := -dynamiclib -install_name "@rpath/"$@
TARGET = libTS2JailbreakEnv.dylib
.PHONY: sign clean
sign: $(TARGET)
@ldid -S $^