The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES := \ |
| 5 | mtdutils.c \ |
| 6 | mounts.c |
| 7 | |
| 8 | LOCAL_MODULE := libmtdutils |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 9 | LOCAL_CLANG := true |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 10 | |
| 11 | include $(BUILD_STATIC_LIBRARY) |
| 12 | |
| 13 | include $(CLEAR_VARS) |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 14 | LOCAL_CLANG := true |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 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 |
Ying Wang | 4e21482 | 2013-04-09 21:41:29 -0700 | [diff] [blame] | 19 | LOCAL_SHARED_LIBRARIES := libcutils liblog libc |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 20 | include $(BUILD_EXECUTABLE) |