Makefile文件  |  21行  |  413 B

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= \
    BatteryProperties.cpp \
    BatteryProperty.cpp \
    IBatteryPropertiesListener.cpp \
    IBatteryPropertiesRegistrar.cpp

LOCAL_STATIC_LIBRARIES := \
    libutils \
    libbinder

LOCAL_MODULE:= libbatteryservice

LOCAL_MODULE_TAGS := optional

LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code

include $(BUILD_STATIC_LIBRARY)