2009-03-03 19:31:44 -08:00
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
|
|
|
2010-11-30 13:49:32 -08:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
2009-03-03 19:31:44 -08:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
2010-11-30 13:49:32 -08:00
|
|
|
LOCAL_SRC_FILES := \
|
2009-03-03 19:31:44 -08:00
|
|
|
installd.c commands.c utils.c
|
|
|
|
|
2010-11-30 13:49:32 -08:00
|
|
|
#LOCAL_C_INCLUDES := \
|
|
|
|
# $(call include-path-for, system-core)/cutils
|
2009-03-03 19:31:44 -08:00
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
|
|
libcutils
|
|
|
|
|
2010-11-30 13:49:32 -08:00
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
|
|
libdiskusage
|
2009-03-03 19:31:44 -08:00
|
|
|
|
2010-11-30 13:49:32 -08:00
|
|
|
LOCAL_MODULE := installd
|
|
|
|
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
2009-03-03 19:31:44 -08:00
|
|
|
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
2010-11-30 13:49:32 -08:00
|
|
|
endif # !simulator
|