blob: 47626640099052818df8c1684ef2af3a822f8f39 [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 \
Tao Baobedf5fc2016-11-18 12:01:26 -080027 libbootloader_message \
Tao Bao9a319f02018-01-04 13:19:11 -080028 libedify \
Tao Bao0c7839a2016-10-10 15:48:37 -070029 libotafault \
Tao Bao9a319f02018-01-04 13:19:11 -080030 libotautil \
31 libbspatch \
32 libziparchive \
33 libutils \
Alex Deymo31653662017-01-11 14:02:13 -080034 libext4_utils \
Tao Bao0c7839a2016-10-10 15:48:37 -070035 libfec \
36 libfec_rs \
Tao Baobedf5fc2016-11-18 12:01:26 -080037 libfs_mgr \
Tao Bao0c7839a2016-10-10 15:48:37 -070038 liblog \
39 libselinux \
Alex Deymo67f3aa82017-01-11 14:38:20 -080040 libsparse \
Tao Bao0c7839a2016-10-10 15:48:37 -070041 libsquashfs_utils \
42 libbz \
43 libz \
44 libbase \
45 libcrypto \
46 libcrypto_utils \
47 libcutils \
Tao Baod80a9982016-03-03 11:43:47 -080048 libtune2fs \
Tianjie Xu107a34f2017-06-29 17:04:21 -070049 libbrotli \
Tao Baod80a9982016-03-03 11:43:47 -080050 $(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 := \
Tao Bao0c7839a2016-10-10 15:48:37 -070063 $(LOCAL_PATH)/include \
64 external/e2fsprogs/misc
65
66LOCAL_CFLAGS := \
Tianjie Xuc89d1e72017-08-28 14:15:07 -070067 -Wall \
Tao Bao0c7839a2016-10-10 15:48:37 -070068 -Werror
69
70LOCAL_EXPORT_C_INCLUDE_DIRS := \
71 $(LOCAL_PATH)/include
72
73LOCAL_STATIC_LIBRARIES := \
74 $(updater_common_static_libraries)
75
76include $(BUILD_STATIC_LIBRARY)
77
78# updater (static executable)
79# ===============================
80include $(CLEAR_VARS)
81
82LOCAL_MODULE := updater
83
84LOCAL_SRC_FILES := \
85 updater.cpp
86
87LOCAL_C_INCLUDES := \
Tao Bao0c7839a2016-10-10 15:48:37 -070088 $(LOCAL_PATH)/include
89
90LOCAL_CFLAGS := \
Tianjie Xuc89d1e72017-08-28 14:15:07 -070091 -Wall \
Tao Bao0c7839a2016-10-10 15:48:37 -070092 -Werror
93
94LOCAL_STATIC_LIBRARIES := \
95 libupdater \
96 $(TARGET_RECOVERY_UPDATER_LIBS) \
97 $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS) \
98 $(updater_common_static_libraries)
Doug Zongker9931f7f2009-06-10 14:11:53 -070099
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700100# Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function
101# named "Register_<libname>()". Here we emit a little C function that
102# gets #included by updater.c. It calls all those registration
103# functions.
104
105# Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.
106# These libs are also linked in with updater, but we don't try to call
107# any sort of registration function for these. Use this variable for
108# any subsidiary static libraries required for your registered
109# extension libs.
110
Dan Willemsenedec27a2017-03-21 16:41:14 -0700111LOCAL_MODULE_CLASS := EXECUTABLES
112inc := $(call local-generated-sources-dir)/register.inc
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700113
114$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
Dan Willemsenedec27a2017-03-21 16:41:14 -0700115$(inc) :
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700116 $(hide) mkdir -p $(dir $@)
117 $(hide) echo "" > $@
Michael Ward6242a8b2011-07-14 15:06:12 -0700118 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700119 $(hide) echo "void RegisterDeviceExtensions() {" >> $@
Michael Ward6242a8b2011-07-14 15:06:12 -0700120 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700121 $(hide) echo "}" >> $@
122
Dan Willemsenedec27a2017-03-21 16:41:14 -0700123LOCAL_GENERATED_SOURCES := $(inc)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700124
Ying Wangeef790d2012-06-11 14:53:08 -0700125inc :=
Ying Wangeef790d2012-06-11 14:53:08 -0700126
Doug Zongker9931f7f2009-06-10 14:11:53 -0700127LOCAL_FORCE_STATIC_EXECUTABLE := true
128
129include $(BUILD_EXECUTABLE)