This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 $^ |