-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
24 lines (19 loc) · 853 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
24
ARCHS = armv7 arm64
TARGET = iphone:clang:latest:8.0
TARGET_IPHONEOS_DEPLOYMENT_VERSION = 8.0
THEOS_PACKAGE_DIR_NAME = debs
ADDITIONAL_OBJCFLAGS = -fobjc-arc
include theos/makefiles/common.mk
APPLICATION_NAME = Appster
Appster_FILES = main.m appstersettings/AppsterSettings.mm $(shell find $(THEOS)/include/SettingsKit -name '*.m') $(wildcard Classes/**/*.m) $(wildcard Classes/*.m) $(wildcard Classes/*.mm)
Appster_FRAMEWORKS = UIKit CoreGraphics MessageUI SafariServices Social QuartzCore
Appster_PRIVATE_FRAMEWORKS = ChatKit Preferences
Appster_LDFLAGS = -lsqlite3 -all_load -ObjC
Appster_LIBRARIES = applist
Appster_LDFLAGS += -Wl,-segalign,4000
include $(THEOS_MAKE_PATH)/application.mk
after-install::
install.exec "killall -9 Appster"
SUBPROJECTS += appstersettings
SUBPROJECTS += appsterupdatehider
include $(THEOS_MAKE_PATH)/aggregate.mk