-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (22 loc) · 679 Bytes
/
Makefile
File metadata and controls
30 lines (22 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# export TARGET = iphone:clang:14.5:14.5
ROOTLESS = 1
ifeq ($(ROOTLESS),1)
THEOS_PACKAGE_SCHEME=rootless
endif
ifeq ($(THEOS_PACKAGE_SCHEME), rootless)
TARGET = iphone:clang:latest:15.0
else
TARGET = iphone:clang:latest:12.0
endif
INSTALL_TARGET_PROCESSES = IPARanger
ARCHS = arm64 arm64e
include $(THEOS)/makefiles/common.mk
GO_EASY_ON_ME = 1
APPLICATION_NAME = IPARanger
SOURCES = $(shell find . -name 'IPAR*.m')
IPARanger_FILES = main.m $(SOURCES)
IPARanger_FRAMEWORKS = UIKit CoreGraphics
IPARanger_CFLAGS = -fobjc-arc
IPARanger_CODESIGN_FLAGS = -Sentitlements.plist
IPARanger_INSTALL_PATH = /var/jb/Applications
include $(THEOS_MAKE_PATH)/application.mk