forked from Naville/Reveal2Loader
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (18 loc) · 700 Bytes
/
Makefile
File metadata and controls
23 lines (18 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export THEOS_PACKAGE_DIR_NAME=./releases/debs
export TARGET=:clang:latest:7.0
export ARCHS=armv7 armv7s arm64
export ADDITIONAL_CFLAGS = -Ithird-party/partialzip/include -Ithird-party/libcurl
export SSH_ASKPASS = ./ssh-askpass
include theos/makefiles/common.mk
TWEAK_NAME = RHRevealLoader
RHRevealLoader_FILES = RHRevealLoader.mm
TOOL_NAME = extrainst_
extrainst__INSTALL_PATH = /DEBIAN
extrainst__FILES = RHDownloadReveal.m third-party/partialzip/partial.c
extrainst__LIBRARIES = z
extrainst__FRAMEWORKS = Security
extrainst__OBJ_FILES = third-party/libcurl/libcurl.a
include $(THEOS_MAKE_PATH)/tweak.mk
include $(THEOS_MAKE_PATH)/tool.mk
after-install::
install.exec "killall -9 SpringBoard"