-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
31 lines (23 loc) · 789 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
25
26
27
28
29
30
31
# @Author: Dana Buehre <creaturesurvive>
# @Date: 18-09-2017 1:58:28
# @Email: [email protected]
# @Filename: Makefile
# @Last modified by: creaturesurvive
# @Last modified time: 24-09-2017 1:59:37
# @Copyright: Copyright © 2014-2017 CreatureSurvive
ARCHS = armv7 armv7s arm64
GO_EASY_ON_ME=1
TARGET = iphone:clang:latest:latest
FINALPACKAGE = 0
DEBUG = 1
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = PullToClear
PullToClear_FILES = $(wildcard *.m) $(wildcard *.xm)
PullToClear_FRAMEWORKS = UIKit QuartzCore CoreGraphics AudioToolbox
ADDITIONAL_OBJCFLAGS = -fobjc-arc
PullToClear_LDFLAGS += -lCSPreferencesProvider
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
install.exec "killall -9 SpringBoard"
SUBPROJECTS += preferences
include $(THEOS_MAKE_PATH)/aggregate.mk