The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | ifneq ($(TARGET_SIMULATOR),true) |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2 | |
| 3 | LOCAL_PATH := $(call my-dir) |
| 4 | include $(CLEAR_VARS) |
| 5 | |
| 6 | LOCAL_SRC_FILES := \ |
| 7 | mtdutils.c \ |
| 8 | mounts.c |
| 9 | |
| 10 | LOCAL_MODULE := libmtdutils |
| 11 | |
| 12 | include $(BUILD_STATIC_LIBRARY) |
| 13 | |
| 14 | include $(CLEAR_VARS) |
| 15 | LOCAL_SRC_FILES := flash_image.c |
| 16 | LOCAL_MODULE := flash_image |
Doug Zongker | 20697b9 | 2009-07-23 15:17:00 -0700 | [diff] [blame] | 17 | LOCAL_MODULE_TAGS := eng |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 18 | LOCAL_STATIC_LIBRARIES := libmtdutils |
| 19 | LOCAL_SHARED_LIBRARIES := libcutils libc |
| 20 | include $(BUILD_EXECUTABLE) |
| 21 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 22 | endif # !TARGET_SIMULATOR |