-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
25 lines (21 loc) · 816 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
SDKVERSION = 4.3
GO_EASY_ON_ME = 1
ADDITIONAL_LDFLAGS = -framework UIKit \
-framework CoreFoundation \
-framework CoreGraphics \
-framework CoreLocation \
-framework Preferences \
-framework GraphicsServices \
-F$(SYSROOT)/System/Library/Frameworks \
-F$(SYSROOT)/System/Library/PrivateFrameworks
ifeq ($(shell [ -f ./framework/makefiles/common.mk ] && echo 1 || echo 0),0)
all clean package install::
git submodule update --init
./framework/git-submodule-recur.sh init
$(MAKE) $(MAKEFLAGS) MAKELEVEL=0 $@
else
BUNDLE_NAME = org.unixlife.ios.cydia.lockinfo.powercontrol
org.unixlife.ios.cydia.lockinfo.powercontrol_OBJC_FILES = PowerControlPlugin.mm
include framework/makefiles/common.mk
include framework/makefiles/bundle.mk
endif