Android.mk revision 54b6cfa9a9e5b861a9930af873580d6dc20f773c
1ifneq ($(TARGET_SIMULATOR),true)
2
3LOCAL_PATH:= $(call my-dir)
4include $(CLEAR_VARS)
5
6LOCAL_SRC_FILES:= \
7    installd.c commands.c utils.c
8
9LOCAL_C_INCLUDES := \
10    $(call include-path-for, system-core)/cutils
11
12LOCAL_SHARED_LIBRARIES := \
13    libcutils
14
15LOCAL_STATIC_LIBRARIES :=
16
17LOCAL_MODULE:= installd
18
19include $(BUILD_EXECUTABLE)
20
21endif # !simulator))
22