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 | commands_recovery_local_path := $(LOCAL_PATH) |
| 5 | |
| 6 | ifneq ($(TARGET_SIMULATOR),true) |
| 7 | ifeq ($(TARGET_ARCH),arm) |
| 8 | |
| 9 | LOCAL_SRC_FILES := \ |
| 10 | recovery.c \ |
| 11 | bootloader.c \ |
| 12 | commands.c \ |
| 13 | firmware.c \ |
| 14 | install.c \ |
| 15 | roots.c \ |
| 16 | ui.c \ |
| 17 | verifier.c |
| 18 | |
| 19 | LOCAL_SRC_FILES += test_roots.c |
| 20 | |
| 21 | LOCAL_MODULE := recovery |
| 22 | |
| 23 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 24 | |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 25 | RECOVERY_API_VERSION := 2 |
| 26 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
| 27 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 28 | # This binary is in the recovery ramdisk, which is otherwise a copy of root. |
| 29 | # It gets copied there in config/Makefile. LOCAL_MODULE_TAGS suppresses |
| 30 | # a (redundant) copy of the binary in /system/bin for user builds. |
| 31 | # TODO: Build the ramdisk image in a more principled way. |
| 32 | |
| 33 | LOCAL_MODULE_TAGS := eng |
| 34 | |
| 35 | LOCAL_STATIC_LIBRARIES := libminzip libunz libamend libmtdutils libmincrypt |
Doug Zongker | 58bde31 | 2009-03-27 13:25:30 -0700 | [diff] [blame] | 36 | LOCAL_STATIC_LIBRARIES += libminui libpixelflinger_static libpng libcutils |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 37 | LOCAL_STATIC_LIBRARIES += libstdc++ libc |
| 38 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 39 | include $(BUILD_EXECUTABLE) |
| 40 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 41 | include $(commands_recovery_local_path)/minui/Android.mk |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 42 | include $(commands_recovery_local_path)/amend/Android.mk |
| 43 | include $(commands_recovery_local_path)/minzip/Android.mk |
| 44 | include $(commands_recovery_local_path)/mtdutils/Android.mk |
| 45 | include $(commands_recovery_local_path)/tools/Android.mk |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 46 | include $(commands_recovery_local_path)/edify/Android.mk |
| 47 | include $(commands_recovery_local_path)/updater/Android.mk |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 48 | commands_recovery_local_path := |
Doug Zongker | 9dbc027 | 2009-06-11 17:32:55 -0700 | [diff] [blame] | 49 | |
| 50 | endif # TARGET_ARCH == arm |
| 51 | endif # !TARGET_SIMULATOR |
| 52 | |