forked from rpetrich/AppList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
24 lines (20 loc) · 827 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
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
LIBRARY_NAME = libapplist
libapplist_OBJC_FILES = ALApplicationList.m ALApplicationTableDataSource.m ALValueCell.m
libapplist_FRAMEWORKS = UIKit CoreGraphics QuartzCore
libapplist_PRIVATE_FRAMEWORKS = AppSupport ImageIO
BUNDLE_NAME = AppList
AppList_OBJC_FILES = ALApplicationPreferenceViewController.m
AppList_FRAMEWORKS = UIKit CoreGraphics
AppList_PRIVATE_FRAMEWORKS = Preferences
AppList_LDFLAGS = -L$(FW_OBJ_DIR) -lapplist
AppList_INSTALL_PATH = /System/Library/PreferenceBundles
include framework/makefiles/common.mk
include framework/makefiles/library.mk
include framework/makefiles/bundle.mk
endif