First work on integrating with new CoreTrust bypass

This commit is contained in:
opa334
2023-11-26 17:43:01 +01:00
parent 3d89c079a2
commit e672aaebd5
49 changed files with 5348 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
TARGET = fastPathSign
CC = clang
CFLAGS = -framework Foundation -framework CoreServices -framework Security -fobjc-arc $(shell pkg-config --cflags libcrypto) -Isrc/external/include
LDFLAGS = $(shell pkg-config --libs libcrypto) -Lsrc/external/lib -lchoma
$(TARGET): $(wildcard src/*.m src/*.c)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
clean:
@rm -f $(TARGET)