blob: 66738622c83873b54f7614994b3c01b00e2ee24b [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001ifneq ($(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))