2012-10-24 17:45:23 +00:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
2014-06-27 23:03:06 +00:00
|
|
|
common_src_files := commands.c utils.c
|
|
|
|
common_cflags := -Wall -Werror
|
2012-10-24 17:45:23 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Static library used in testing and executable
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libinstalld
|
|
|
|
LOCAL_MODULE_TAGS := eng tests
|
2014-06-27 23:03:06 +00:00
|
|
|
LOCAL_SRC_FILES := $(common_src_files)
|
|
|
|
LOCAL_CFLAGS := $(common_cflags)
|
|
|
|
LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk
|
2012-10-24 17:45:23 +00:00
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Executable
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := installd
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
2014-06-27 23:03:06 +00:00
|
|
|
LOCAL_CFLAGS := $(common_cflags)
|
|
|
|
LOCAL_SRC_FILES := installd.c $(common_src_files)
|
|
|
|
LOCAL_SHARED_LIBRARIES := libcutils liblog libselinux
|
|
|
|
LOCAL_STATIC_LIBRARIES := libdiskusage
|
|
|
|
LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk
|
2012-10-24 17:45:23 +00:00
|
|
|
include $(BUILD_EXECUTABLE)
|