The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | ifneq ($(TARGET_SIMULATOR),true) |
| 2 | ifeq ($(TARGET_ARCH),arm) |
| 3 | |
| 4 | LOCAL_PATH := $(call my-dir) |
| 5 | include $(CLEAR_VARS) |
| 6 | |
| 7 | LOCAL_SRC_FILES := \ |
Koushik Dutta | 19447c0 | 2010-11-10 10:40:44 -0800 | [diff] [blame^] | 8 | mtdutils.c |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 9 | |
| 10 | LOCAL_MODULE := libmtdutils |
| 11 | |
| 12 | include $(BUILD_STATIC_LIBRARY) |
| 13 | |
Koushik Dutta | bca9243 | 2010-05-06 11:50:32 -0700 | [diff] [blame] | 14 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 15 | endif # TARGET_ARCH == arm |
| 16 | endif # !TARGET_SIMULATOR |