blob: cca329ed602ab26e7b2fadef26a02818d3367d12 [file] [log] [blame]
Dima Zavinf48b2362011-08-30 10:46:09 -07001# Copyright 2011 The Android Open Source Project
2
Brian Swetland303e6ac2011-09-20 17:38:06 -07003ifneq ($(BUILD_TINY_ANDROID),true)
4
Dima Zavinf48b2362011-08-30 10:46:09 -07005LOCAL_PATH := $(call my-dir)
6include $(CLEAR_VARS)
7
8LOCAL_SRC_FILES := \
9 charger.c
10
11LOCAL_MODULE := charger
12LOCAL_MODULE_TAGS := optional
13LOCAL_FORCE_STATIC_EXECUTABLE := true
14LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
15LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_UNSTRIPPED)
16
17LOCAL_C_INCLUDES := bootable/recovery
18
19LOCAL_STATIC_LIBRARIES := libminui libpixelflinger_static libpng
20LOCAL_STATIC_LIBRARIES += libz libstdc++ libcutils libc
21
22include $(BUILD_EXECUTABLE)
Brian Swetland303e6ac2011-09-20 17:38:06 -070023
24endif