-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
executable file
·23 lines (19 loc) · 1006 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
THEOS_PACKAGE_DIR_NAME = debs
TARGET = iphone:clang:latest:7.0
ARCHS = armv7 arm64
include theos/makefiles/common.mk
TWEAK_NAME = Orangered
Orangered_FILES = Orangered.xm ORProviders.xm External/FDKeychain/FDKeychain.m $(wildcard External/RedditKit/*.m) $(wildcard External/RedditKit/Mantle/*.m) $(wildcard External/RedditKit/AFNetworking/*.m)
Orangered_FRAMEWORKS = AudioToolbox CFNetwork CoreLocation Security StoreKit UIKit QuartzCore CoreGraphics SystemConfiguration Security MobileCoreServices
Orangered_PRIVATE_FRAMEWORKS = BulletinBoard ToneLibrary PersistentConnection Preferences
Orangered_CFLAGS = -fobjc-arc
Orangered_CFLAGS += -I External/FDKeychain
Orangered_CFLAGS += -I External/RedditKit
Orangered_CFLAGS += -I External/RedditKit/AFNetworking
Orangered_CFLAGS += -I External/RedditKit/Mantle
Orangered_LIBRARIES += cephei
include $(THEOS_MAKE_PATH)/tweak.mk
SUBPROJECTS += ORPrefs ORListener
include $(THEOS_MAKE_PATH)/aggregate.mk
after-install::
install.exec "killall -9 backboardd"