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 \ |
| 21 | libext2_uuid_static \ |
| 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 \ |
| 27 | libedify \ |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 28 | libziparchive \ |
| 29 | libotautil \ |
Tao Bao | bedf5fc | 2016-11-18 12:01:26 -0800 | [diff] [blame] | 30 | libbootloader_message \ |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 31 | libutils \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 32 | libmounts \ |
| 33 | libotafault \ |
| 34 | libext4_utils_static \ |
| 35 | libfec \ |
| 36 | libfec_rs \ |
Tao Bao | bedf5fc | 2016-11-18 12:01:26 -0800 | [diff] [blame] | 37 | libfs_mgr \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 38 | liblog \ |
| 39 | libselinux \ |
| 40 | libsparse_static \ |
| 41 | libsquashfs_utils \ |
| 42 | libbz \ |
| 43 | libz \ |
| 44 | libbase \ |
| 45 | libcrypto \ |
| 46 | libcrypto_utils \ |
| 47 | libcutils \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 48 | libtune2fs \ |
| 49 | $(tune2fs_static_libraries) |
Sami Tolvanen | 0a7b473 | 2015-06-25 10:25:36 +0100 | [diff] [blame] | 50 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 51 | # libupdater (static library) |
| 52 | # =============================== |
| 53 | include $(CLEAR_VARS) |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 54 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 55 | LOCAL_MODULE := libupdater |
| 56 | |
| 57 | LOCAL_SRC_FILES := \ |
| 58 | install.cpp \ |
| 59 | blockimg.cpp |
| 60 | |
| 61 | LOCAL_C_INCLUDES := \ |
| 62 | $(LOCAL_PATH)/.. \ |
| 63 | $(LOCAL_PATH)/include \ |
| 64 | external/e2fsprogs/misc |
| 65 | |
| 66 | LOCAL_CFLAGS := \ |
| 67 | -Wno-unused-parameter \ |
| 68 | -Werror |
| 69 | |
| 70 | LOCAL_EXPORT_C_INCLUDE_DIRS := \ |
| 71 | $(LOCAL_PATH)/include |
| 72 | |
| 73 | LOCAL_STATIC_LIBRARIES := \ |
| 74 | $(updater_common_static_libraries) |
| 75 | |
| 76 | include $(BUILD_STATIC_LIBRARY) |
| 77 | |
| 78 | # updater (static executable) |
| 79 | # =============================== |
| 80 | include $(CLEAR_VARS) |
| 81 | |
| 82 | LOCAL_MODULE := updater |
| 83 | |
| 84 | LOCAL_SRC_FILES := \ |
| 85 | updater.cpp |
| 86 | |
| 87 | LOCAL_C_INCLUDES := \ |
| 88 | $(LOCAL_PATH)/.. \ |
| 89 | $(LOCAL_PATH)/include |
| 90 | |
| 91 | LOCAL_CFLAGS := \ |
| 92 | -Wno-unused-parameter \ |
| 93 | -Werror |
| 94 | |
| 95 | LOCAL_STATIC_LIBRARIES := \ |
| 96 | libupdater \ |
| 97 | $(TARGET_RECOVERY_UPDATER_LIBS) \ |
| 98 | $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS) \ |
| 99 | $(updater_common_static_libraries) |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 100 | |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 101 | # Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function |
| 102 | # named "Register_<libname>()". Here we emit a little C function that |
| 103 | # gets #included by updater.c. It calls all those registration |
| 104 | # functions. |
| 105 | |
| 106 | # Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS. |
| 107 | # These libs are also linked in with updater, but we don't try to call |
| 108 | # any sort of registration function for these. Use this variable for |
| 109 | # any subsidiary static libraries required for your registered |
| 110 | # extension libs. |
| 111 | |
| 112 | inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc |
| 113 | |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 114 | # Encode the value of TARGET_RECOVERY_UPDATER_LIBS into the filename of the dependency. |
| 115 | # So if TARGET_RECOVERY_UPDATER_LIBS is changed, a new dependency file will be generated. |
| 116 | # Note that we have to remove any existing depency files before creating new one, |
| 117 | # so no obsolete dependecy file gets used if you switch back to an old value. |
| 118 | inc_dep_file := $(inc).dep.$(subst $(space),-,$(sort $(TARGET_RECOVERY_UPDATER_LIBS))) |
| 119 | $(inc_dep_file): stem := $(inc).dep |
| 120 | $(inc_dep_file) : |
| 121 | $(hide) mkdir -p $(dir $@) |
| 122 | $(hide) rm -f $(stem).* |
| 123 | $(hide) touch $@ |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 124 | |
| 125 | $(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS) |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 126 | $(inc) : $(inc_dep_file) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 127 | $(hide) mkdir -p $(dir $@) |
| 128 | $(hide) echo "" > $@ |
Michael Ward | 6242a8b | 2011-07-14 15:06:12 -0700 | [diff] [blame] | 129 | $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 130 | $(hide) echo "void RegisterDeviceExtensions() {" >> $@ |
Michael Ward | 6242a8b | 2011-07-14 15:06:12 -0700 | [diff] [blame] | 131 | $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 132 | $(hide) echo "}" >> $@ |
| 133 | |
Bruce Beare | 4c3c7a9 | 2014-09-12 09:09:52 -0700 | [diff] [blame] | 134 | $(call intermediates-dir-for,EXECUTABLES,updater,,,$(TARGET_PREFER_32_BIT))/updater.o : $(inc) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 135 | LOCAL_C_INCLUDES += $(dir $(inc)) |
| 136 | |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 137 | inc := |
| 138 | inc_dep_file := |
| 139 | |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 140 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 141 | |
| 142 | include $(BUILD_EXECUTABLE) |