blob: 1dd4ee5d66ba6e7a0e9593f8f9d99d81027b6aab [file] [log] [blame]
Mike Lockwood94afecf2012-10-24 10:45:23 -07001LOCAL_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)