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 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6 | LOCAL_SRC_FILES := \ |
Doug Zongker | 10e418d | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 7 | recovery.cpp \ |
| 8 | bootloader.cpp \ |
| 9 | install.cpp \ |
| 10 | roots.cpp \ |
Doug Zongker | a4e88e4 | 2011-11-01 11:00:20 -0700 | [diff] [blame^] | 11 | ui.cpp \ |
Doug Zongker | 7440630 | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 12 | screen_ui.cpp \ |
Doug Zongker | 10e418d | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 13 | verifier.cpp |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 14 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 15 | LOCAL_MODULE := recovery |
| 16 | |
| 17 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 18 | |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 19 | RECOVERY_API_VERSION := 3 |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 20 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
| 21 | |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 22 | LOCAL_STATIC_LIBRARIES := |
| 23 | |
| 24 | ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) |
| 25 | LOCAL_CFLAGS += -DUSE_EXT4 |
| 26 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 27 | LOCAL_STATIC_LIBRARIES += libext4_utils libz |
| 28 | endif |
| 29 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 30 | # This binary is in the recovery ramdisk, which is otherwise a copy of root. |
| 31 | # It gets copied there in config/Makefile. LOCAL_MODULE_TAGS suppresses |
| 32 | # a (redundant) copy of the binary in /system/bin for user builds. |
| 33 | # TODO: Build the ramdisk image in a more principled way. |
| 34 | |
| 35 | LOCAL_MODULE_TAGS := eng |
| 36 | |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 37 | ifeq ($(TARGET_RECOVERY_UI_LIB),) |
Doug Zongker | 7d0542f | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 38 | LOCAL_SRC_FILES += default_device.cpp |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 39 | else |
| 40 | LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) |
| 41 | endif |
Doug Zongker | cc8cd3f | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 42 | LOCAL_STATIC_LIBRARIES += libext4_utils libz |
Doug Zongker | 608fa02 | 2009-07-15 18:10:28 -0700 | [diff] [blame] | 43 | LOCAL_STATIC_LIBRARIES += libminzip libunz libmtdutils libmincrypt |
Doug Zongker | 19faefa | 2009-03-27 17:06:24 -0700 | [diff] [blame] | 44 | LOCAL_STATIC_LIBRARIES += libminui libpixelflinger_static libpng libcutils |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 45 | LOCAL_STATIC_LIBRARIES += libstdc++ libc |
| 46 | |
Doug Zongker | cc8cd3f | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 47 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 48 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 49 | include $(BUILD_EXECUTABLE) |
| 50 | |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 51 | |
| 52 | include $(CLEAR_VARS) |
| 53 | |
Doug Zongker | 10e418d | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 54 | LOCAL_SRC_FILES := verifier_test.cpp verifier.cpp |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 55 | |
| 56 | LOCAL_MODULE := verifier_test |
| 57 | |
| 58 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 59 | |
| 60 | LOCAL_MODULE_TAGS := tests |
| 61 | |
| 62 | LOCAL_STATIC_LIBRARIES := libmincrypt libcutils libstdc++ libc |
| 63 | |
| 64 | include $(BUILD_EXECUTABLE) |
| 65 | |
| 66 | |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 67 | include $(commands_recovery_local_path)/minui/Android.mk |
Hristo Bojinov | db314d6 | 2010-08-02 10:29:49 -0700 | [diff] [blame] | 68 | include $(commands_recovery_local_path)/minelf/Android.mk |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 69 | include $(commands_recovery_local_path)/minzip/Android.mk |
| 70 | include $(commands_recovery_local_path)/mtdutils/Android.mk |
| 71 | include $(commands_recovery_local_path)/tools/Android.mk |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 72 | include $(commands_recovery_local_path)/edify/Android.mk |
| 73 | include $(commands_recovery_local_path)/updater/Android.mk |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 74 | include $(commands_recovery_local_path)/applypatch/Android.mk |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 75 | commands_recovery_local_path := |