Android.mk revision 94afecf4b6f437b3ee9a076242402e421c6c07a6
1LOCAL_PATH := $(call my-dir)
2
3common_src_files := \
4    commands.c utils.c
5
6#
7# Static library used in testing and executable
8#
9
10include $(CLEAR_VARS)
11
12LOCAL_SRC_FILES := \
13    $(common_src_files)
14
15LOCAL_MODULE := libinstalld
16
17LOCAL_MODULE_TAGS := eng tests
18
19include $(BUILD_STATIC_LIBRARY)
20
21#
22# Executable
23#
24
25include $(CLEAR_VARS)
26
27LOCAL_SRC_FILES := \
28    installd.c \
29    $(common_src_files)
30
31LOCAL_SHARED_LIBRARIES := \
32    libcutils \
33    libselinux
34
35LOCAL_STATIC_LIBRARIES := \
36    libdiskusage
37
38LOCAL_MODULE := installd
39
40LOCAL_MODULE_TAGS := optional
41
42include $(BUILD_EXECUTABLE)
43