summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index a66032e..86c2eb2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,13 @@
-ARCHS ?= arm64
+ARCHS ?= arm64 arm64e
target ?= iphone:latest:11.0
CFLAGS = -Iinclude -Wno-error=unused-variable -Wno-error=unused-function
include $(THEOS)/makefiles/common.mk
TOOL_NAME = inject
inject_CODESIGN_FLAGS = -Sentitlements.xml
-inject_CFLAGS += -I./patchfinder64 -Wno-unused-variable -Wno-unused-function
+inject_CFLAGS += -I. -I./patchfinder64 -I./kernel_call -Wno-unused-variable -Wno-unused-function -Wno-unused-label
inject_LIBRARIES = mis
-inject_FRAMEWORKS = IOKit Security
-inject_FILES = main.m inject.m patchfinder64/patchfinder64.c kern_funcs.c
+inject_FRAMEWORKS = Foundation CoreFoundation IOKit Security
+inject_FILES = main.m inject.m patchfinder64/patchfinder64.c kern_funcs.c kernel_call/kc_parameters.c kernel_call/kernel_alloc.c kernel_call/kernel_call.c kernel_call/kernel_memory.c kernel_call/kernel_slide.c kernel_call/log.c kernel_call/pac.c kernel_call/parameters.c kernel_call/platform_match.c kernel_call/platform.c kernel_call/user_client.c
include $(THEOS_MAKE_PATH)/tool.mk