1
0
mirror of https://github.com/opa334/TrollStore.git synced 2025-04-12 23:33:11 +08:00
TrollStore/Exploits/fastPathSign/Makefile
2023-12-30 18:35:44 -05:00

13 lines
448 B
Makefile

TARGET = fastPathSign
CC = clang
CFLAGS = -framework Foundation -framework CoreServices -framework Security -fobjc-arc -isysroot $(shell xcrun --sdk iphoneos --show-sdk-path) $(shell pkg-config --cflags libcrypto) -Isrc/external/include -arch arm64 -miphoneos-version-min=14.0 src/external/lib/libcrypto.a
LDFLAGS = -Lsrc/external/lib -lchoma
$(TARGET): $(wildcard src/*.m src/*.c)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
clean:
@rm -f $(TARGET)