Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1 | # Copyright 2009 The Android Open Source Project |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 14 | |
| 15 | LOCAL_PATH := $(call my-dir) |
| 16 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 17 | tune2fs_static_libraries := \ |
| 18 | libext2_com_err \ |
| 19 | libext2_blkid \ |
| 20 | libext2_quota \ |
Alex Deymo | 7c5dbd6 | 2017-01-13 17:32:20 -0800 | [diff] [blame] | 21 | libext2_uuid \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 22 | libext2_e2p \ |
| 23 | libext2fs |
| 24 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 25 | updater_common_static_libraries := \ |
| 26 | libapplypatch \ |
Tao Bao | bedf5fc | 2016-11-18 12:01:26 -0800 | [diff] [blame] | 27 | libbootloader_message \ |
Tao Bao | 9a319f0 | 2018-01-04 13:19:11 -0800 | [diff] [blame] | 28 | libedify \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 29 | libotafault \ |
Tao Bao | 9a319f0 | 2018-01-04 13:19:11 -0800 | [diff] [blame] | 30 | libotautil \ |
| 31 | libbspatch \ |
| 32 | libziparchive \ |
| 33 | libutils \ |
Alex Deymo | 3165366 | 2017-01-11 14:02:13 -0800 | [diff] [blame] | 34 | libext4_utils \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 35 | libfec \ |
| 36 | libfec_rs \ |
Tianjie Xu | 69ffa15 | 2018-08-01 16:40:00 -0700 | [diff] [blame] | 37 | libverity_tree \ |
Tao Bao | bedf5fc | 2016-11-18 12:01:26 -0800 | [diff] [blame] | 38 | libfs_mgr \ |
Tao Bao | 6a7e4af | 2018-06-14 21:57:43 -0700 | [diff] [blame] | 39 | libgtest_prod \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 40 | liblog \ |
| 41 | libselinux \ |
Alex Deymo | 67f3aa8 | 2017-01-11 14:38:20 -0800 | [diff] [blame] | 42 | libsparse \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 43 | libsquashfs_utils \ |
| 44 | libbz \ |
| 45 | libz \ |
| 46 | libbase \ |
| 47 | libcrypto \ |
| 48 | libcrypto_utils \ |
| 49 | libcutils \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 50 | libtune2fs \ |
Tianjie Xu | 107a34f | 2017-06-29 17:04:21 -0700 | [diff] [blame] | 51 | libbrotli \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 52 | $(tune2fs_static_libraries) |
Sami Tolvanen | 0a7b473 | 2015-06-25 10:25:36 +0100 | [diff] [blame] | 53 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 54 | # libupdater (static library) |
| 55 | # =============================== |
| 56 | include $(CLEAR_VARS) |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 57 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 58 | LOCAL_MODULE := libupdater |
| 59 | |
| 60 | LOCAL_SRC_FILES := \ |
Tao Bao | c390123 | 2018-05-21 16:05:56 -0700 | [diff] [blame] | 61 | commands.cpp \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 62 | install.cpp \ |
| 63 | blockimg.cpp |
| 64 | |
| 65 | LOCAL_C_INCLUDES := \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 66 | $(LOCAL_PATH)/include \ |
| 67 | external/e2fsprogs/misc |
| 68 | |
| 69 | LOCAL_CFLAGS := \ |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 70 | -Wall \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 71 | -Werror |
| 72 | |
| 73 | LOCAL_EXPORT_C_INCLUDE_DIRS := \ |
| 74 | $(LOCAL_PATH)/include |
| 75 | |
| 76 | LOCAL_STATIC_LIBRARIES := \ |
| 77 | $(updater_common_static_libraries) |
| 78 | |
| 79 | include $(BUILD_STATIC_LIBRARY) |
| 80 | |
| 81 | # updater (static executable) |
| 82 | # =============================== |
| 83 | include $(CLEAR_VARS) |
| 84 | |
| 85 | LOCAL_MODULE := updater |
| 86 | |
| 87 | LOCAL_SRC_FILES := \ |
| 88 | updater.cpp |
| 89 | |
| 90 | LOCAL_C_INCLUDES := \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 91 | $(LOCAL_PATH)/include |
| 92 | |
| 93 | LOCAL_CFLAGS := \ |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 94 | -Wall \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 95 | -Werror |
| 96 | |
| 97 | LOCAL_STATIC_LIBRARIES := \ |
| 98 | libupdater \ |
| 99 | $(TARGET_RECOVERY_UPDATER_LIBS) \ |
| 100 | $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS) \ |
| 101 | $(updater_common_static_libraries) |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 102 | |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 103 | # Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function |
| 104 | # named "Register_<libname>()". Here we emit a little C function that |
| 105 | # gets #included by updater.c. It calls all those registration |
| 106 | # functions. |
| 107 | |
| 108 | # Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS. |
| 109 | # These libs are also linked in with updater, but we don't try to call |
| 110 | # any sort of registration function for these. Use this variable for |
| 111 | # any subsidiary static libraries required for your registered |
| 112 | # extension libs. |
| 113 | |
Dan Willemsen | edec27a | 2017-03-21 16:41:14 -0700 | [diff] [blame] | 114 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 115 | inc := $(call local-generated-sources-dir)/register.inc |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 116 | |
| 117 | $(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS) |
Dan Willemsen | edec27a | 2017-03-21 16:41:14 -0700 | [diff] [blame] | 118 | $(inc) : |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 119 | $(hide) mkdir -p $(dir $@) |
| 120 | $(hide) echo "" > $@ |
Michael Ward | 6242a8b | 2011-07-14 15:06:12 -0700 | [diff] [blame] | 121 | $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 122 | $(hide) echo "void RegisterDeviceExtensions() {" >> $@ |
Michael Ward | 6242a8b | 2011-07-14 15:06:12 -0700 | [diff] [blame] | 123 | $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 124 | $(hide) echo "}" >> $@ |
| 125 | |
Dan Willemsen | edec27a | 2017-03-21 16:41:14 -0700 | [diff] [blame] | 126 | LOCAL_GENERATED_SOURCES := $(inc) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 127 | |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 128 | inc := |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 129 | |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 130 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 131 | |
| 132 | include $(BUILD_EXECUTABLE) |