blob: 3a47dacd50806da43140efb0536844703d16ccf3 [file] [log] [blame]
Doug Zongker9931f7f2009-06-10 14:11:53 -07001# Copyright 2009 The Android Open Source Project
Tao Baoba9a42a2015-06-23 23:23:33 -07002#
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 Zongker9931f7f2009-06-10 14:11:53 -070014
15LOCAL_PATH := $(call my-dir)
16
Tao Baod80a9982016-03-03 11:43:47 -080017tune2fs_static_libraries := \
18 libext2_com_err \
19 libext2_blkid \
20 libext2_quota \
Alex Deymo7c5dbd62017-01-13 17:32:20 -080021 libext2_uuid \
Tao Baod80a9982016-03-03 11:43:47 -080022 libext2_e2p \
23 libext2fs
24
Tao Bao0c7839a2016-10-10 15:48:37 -070025updater_common_static_libraries := \
26 libapplypatch \
Sen Jiang25c56972016-05-10 15:23:25 -070027 libbspatch \
Tao Bao0c7839a2016-10-10 15:48:37 -070028 libedify \
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070029 libziparchive \
30 libotautil \
Tao Baobedf5fc2016-11-18 12:01:26 -080031 libbootloader_message \
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070032 libutils \
Tao Bao0c7839a2016-10-10 15:48:37 -070033 libmounts \
34 libotafault \
Alex Deymo31653662017-01-11 14:02:13 -080035 libext4_utils \
Tao Bao0c7839a2016-10-10 15:48:37 -070036 libfec \
37 libfec_rs \
Tao Baobedf5fc2016-11-18 12:01:26 -080038 libfs_mgr \
Tao Bao0c7839a2016-10-10 15:48:37 -070039 liblog \
40 libselinux \
Alex Deymo67f3aa82017-01-11 14:38:20 -080041 libsparse \
Tao Bao0c7839a2016-10-10 15:48:37 -070042 libsquashfs_utils \
43 libbz \
44 libz \
45 libbase \
46 libcrypto \
47 libcrypto_utils \
48 libcutils \
Tao Baod80a9982016-03-03 11:43:47 -080049 libtune2fs \
50 $(tune2fs_static_libraries)
Sami Tolvanen0a7b4732015-06-25 10:25:36 +010051
Tao Bao0c7839a2016-10-10 15:48:37 -070052# libupdater (static library)
53# ===============================
54include $(CLEAR_VARS)
Stephen Smalley779701d2012-02-09 14:13:23 -050055
Tao Bao0c7839a2016-10-10 15:48:37 -070056LOCAL_MODULE := libupdater
57
58LOCAL_SRC_FILES := \
59 install.cpp \
60 blockimg.cpp
61
62LOCAL_C_INCLUDES := \
63 $(LOCAL_PATH)/.. \
64 $(LOCAL_PATH)/include \
65 external/e2fsprogs/misc
66
67LOCAL_CFLAGS := \
68 -Wno-unused-parameter \
69 -Werror
70
71LOCAL_EXPORT_C_INCLUDE_DIRS := \
72 $(LOCAL_PATH)/include
73
74LOCAL_STATIC_LIBRARIES := \
75 $(updater_common_static_libraries)
76
77include $(BUILD_STATIC_LIBRARY)
78
79# updater (static executable)
80# ===============================
81include $(CLEAR_VARS)
82
83LOCAL_MODULE := updater
84
85LOCAL_SRC_FILES := \
86 updater.cpp
87
88LOCAL_C_INCLUDES := \
89 $(LOCAL_PATH)/.. \
90 $(LOCAL_PATH)/include
91
92LOCAL_CFLAGS := \
93 -Wno-unused-parameter \
94 -Werror
95
96LOCAL_STATIC_LIBRARIES := \
97 libupdater \
98 $(TARGET_RECOVERY_UPDATER_LIBS) \
99 $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS) \
100 $(updater_common_static_libraries)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700101
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700102# Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function
103# named "Register_<libname>()". Here we emit a little C function that
104# gets #included by updater.c. It calls all those registration
105# functions.
106
107# Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.
108# These libs are also linked in with updater, but we don't try to call
109# any sort of registration function for these. Use this variable for
110# any subsidiary static libraries required for your registered
111# extension libs.
112
113inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc
114
Ying Wangeef790d2012-06-11 14:53:08 -0700115# Encode the value of TARGET_RECOVERY_UPDATER_LIBS into the filename of the dependency.
116# So if TARGET_RECOVERY_UPDATER_LIBS is changed, a new dependency file will be generated.
117# Note that we have to remove any existing depency files before creating new one,
118# so no obsolete dependecy file gets used if you switch back to an old value.
119inc_dep_file := $(inc).dep.$(subst $(space),-,$(sort $(TARGET_RECOVERY_UPDATER_LIBS)))
120$(inc_dep_file): stem := $(inc).dep
121$(inc_dep_file) :
122 $(hide) mkdir -p $(dir $@)
123 $(hide) rm -f $(stem).*
124 $(hide) touch $@
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700125
126$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
Ying Wangeef790d2012-06-11 14:53:08 -0700127$(inc) : $(inc_dep_file)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700128 $(hide) mkdir -p $(dir $@)
129 $(hide) echo "" > $@
Michael Ward6242a8b2011-07-14 15:06:12 -0700130 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700131 $(hide) echo "void RegisterDeviceExtensions() {" >> $@
Michael Ward6242a8b2011-07-14 15:06:12 -0700132 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700133 $(hide) echo "}" >> $@
134
Bruce Beare4c3c7a92014-09-12 09:09:52 -0700135$(call intermediates-dir-for,EXECUTABLES,updater,,,$(TARGET_PREFER_32_BIT))/updater.o : $(inc)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700136LOCAL_C_INCLUDES += $(dir $(inc))
137
Ying Wangeef790d2012-06-11 14:53:08 -0700138inc :=
139inc_dep_file :=
140
Doug Zongker9931f7f2009-06-10 14:11:53 -0700141LOCAL_FORCE_STATIC_EXECUTABLE := true
142
143include $(BUILD_EXECUTABLE)