-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (19 loc) · 744 Bytes
/
Makefile
File metadata and controls
23 lines (19 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
TARGET := iphone:clang:latest:12.0
INSTALL_TARGET_PROCESSES = SpringBoard
ARCHS = arm64 arm64e
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = SendToDesktop
SendToDesktop_FILES = Hooks.x \
SendToDesktopActivity/SendToDesktopActivity.m \
Utils/Utils.m \
lib/UICKeyChainStore/UICKeyChainStore.m \
lib/Reachability/Reachability.m \
FileSender/FileSender.m \
SendToDesktopViewController/SendToDesktopViewController.m \
FileSender/FileSender.m
SendToDesktop_CFLAGS = -fobjc-arc -I./include -Wall -Werror -Wno-unused-command-line-argument -DNEED_NETWORK_UTILS
SendToDesktop_LDFLAGS = -L./lib
SendToDesktop_LIBRARIES = z mryipc ssh2+openssl
include $(THEOS_MAKE_PATH)/tweak.mk
SUBPROJECTS += Preferences
include $(THEOS_MAKE_PATH)/aggregate.mk