303e6ac804
Change-Id: I28157cbadcb208df517052336f652f5810048cc1 Signed-off-by: Brian Swetland <swetland@google.com>
24 lines
555 B
Makefile
24 lines
555 B
Makefile
# Copyright 2011 The Android Open Source Project
|
|
|
|
ifneq ($(BUILD_TINY_ANDROID),true)
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
charger.c
|
|
|
|
LOCAL_MODULE := charger
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
|
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
|
|
LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_UNSTRIPPED)
|
|
|
|
LOCAL_C_INCLUDES := bootable/recovery
|
|
|
|
LOCAL_STATIC_LIBRARIES := libminui libpixelflinger_static libpng
|
|
LOCAL_STATIC_LIBRARIES += libz libstdc++ libcutils libc
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|