Dima Zavin | f48b236 | 2011-08-30 10:46:09 -0700 | [diff] [blame] | 1 | # Copyright 2011 The Android Open Source Project |
| 2 | |
Brian Swetland | 303e6ac | 2011-09-20 17:38:06 -0700 | [diff] [blame] | 3 | ifneq ($(BUILD_TINY_ANDROID),true) |
| 4 | |
Dima Zavin | f48b236 | 2011-08-30 10:46:09 -0700 | [diff] [blame] | 5 | LOCAL_PATH := $(call my-dir) |
| 6 | include $(CLEAR_VARS) |
| 7 | |
| 8 | LOCAL_SRC_FILES := \ |
| 9 | charger.c |
| 10 | |
| 11 | LOCAL_MODULE := charger |
| 12 | LOCAL_MODULE_TAGS := optional |
| 13 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 14 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) |
| 15 | LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_UNSTRIPPED) |
| 16 | |
| 17 | LOCAL_C_INCLUDES := bootable/recovery |
| 18 | |
| 19 | LOCAL_STATIC_LIBRARIES := libminui libpixelflinger_static libpng |
| 20 | LOCAL_STATIC_LIBRARIES += libz libstdc++ libcutils libc |
| 21 | |
| 22 | include $(BUILD_EXECUTABLE) |
Brian Swetland | 303e6ac | 2011-09-20 17:38:06 -0700 | [diff] [blame] | 23 | |
| 24 | endif |