blob: 1a75423ab9ea3668b6027f01225a07de81065306 [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001ifneq ($(TARGET_SIMULATOR),true)
2ifeq ($(TARGET_ARCH),arm)
3
4LOCAL_PATH := $(call my-dir)
5include $(CLEAR_VARS)
6
7LOCAL_SRC_FILES := \
8 mtdutils.c \
9 mounts.c
10
11LOCAL_MODULE := libmtdutils
12
13include $(BUILD_STATIC_LIBRARY)
14
15include $(CLEAR_VARS)
16LOCAL_SRC_FILES := flash_image.c
17LOCAL_MODULE := flash_image
18LOCAL_STATIC_LIBRARIES := libmtdutils
19LOCAL_SHARED_LIBRARIES := libcutils libc
20include $(BUILD_EXECUTABLE)
21
22endif # TARGET_ARCH == arm
23endif # !TARGET_SIMULATOR