-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (20 loc) · 981 Bytes
/
Makefile
File metadata and controls
28 lines (20 loc) · 981 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
TARGET = iOS
ARCHS = arm64 arm64e
TARGET = iphone:clang:latest:14.0
# TARGET = simulator:clang:latest:14.0
# ARCHS = x86_64 arm64
INSTALL_TARGET_PROCESSES = RebootTools
include $(THEOS)/makefiles/common.mk
APPLICATION_NAME = RebootTools
RebootTools_FILES = AppDelegate.swift RootViewController.swift SettingsViewController.swift DeviceController.m PlistManagerUtils.swift SettingsUtils.swift
RebootTools_FRAMEWORKS = UIKit CoreGraphics
RebootTools_RESOURCES = Resources/LaunchScreen.storyboardc
$(APPLICATION_NAME)_SWIFT_BRIDGING_HEADER += $(APPLICATION_NAME)-Bridging-Header.h
include $(THEOS_MAKE_PATH)/application.mk
$(APPLICATION_NAME)_CODESIGN_FLAGS = -Sentitlements.plist
# SUBPROJECTS += RebootRootHelper
#SUBPROJECTS += RebootUserSpaceHelper
include $(THEOS_MAKE_PATH)/aggregate.mk
after-package::
@echo "Renaming .ipa to .tipa..."
@mv ./packages/com.developlab.RebootTools_1.2.1.ipa ./packages/com.developlab.RebootTools_1.2.1.tipa || echo "No .ipa file found."