forked from enmity-mod/tweak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
21 lines (16 loc) · 648 Bytes
/
Makefile
File metadata and controls
21 lines (16 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
ARCHS := arm64 arm64e
TARGET := iphone:clang:latest:7.0
include $(THEOS)/makefiles/common.mk
DEBUG_IP = 192.168.0.35
TWEAK_NAME = Enmity
DEVTOOLS = 0
Enmity_FILES = $(shell find src -name "*.x" && find src -name "*.xi")
Enmity_CFLAGS = -DDEBUG_IP=@\"$(DEBUG_IP)\" -DDEVTOOLS=$(DEVTOOLS) -fobjc-arc -Wno-module-import-in-extern-c
Enmity_FRAMEWORKS = UIKit Foundation CoreGraphics CoreImage
BUNDLE_NAME = EnmityFiles
EnmityFiles_INSTALL_PATH = "$(THEOS_PACKAGE_INSTALL_PREFIX)/Library/Application\ Support/Enmity"
ifeq ($(SIDELOAD),1)
Enmity_FILES += SideloadFix.xm
endif
include $(THEOS_MAKE_PATH)/tweak.mk
include $(THEOS_MAKE_PATH)/bundle.mk