blob: 71a9a23f6a5b08796b57fcf5bc75786051a3b1af [file] [log] [blame]
Doug Zongker9931f7f2009-06-10 14:11:53 -07001# Copyright 2009 The Android Open Source Project
2
3LOCAL_PATH := $(call my-dir)
4
5updater_src_files := \
6 install.c \
7 updater.c
8
9#
10# Build the device-side library
11#
12include $(CLEAR_VARS)
13
14LOCAL_SRC_FILES := $(updater_src_files)
15
Doug Zongker2b0fdc62009-06-19 11:22:06 -070016LOCAL_STATIC_LIBRARIES := $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS)
17LOCAL_STATIC_LIBRARIES += libapplypatch libedify libmtdutils libminzip libz
Doug Zongker8edb00c2009-06-11 17:21:44 -070018LOCAL_STATIC_LIBRARIES += libmincrypt libbz
Doug Zongker9931f7f2009-06-10 14:11:53 -070019LOCAL_STATIC_LIBRARIES += libcutils libstdc++ libc
20LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
21
Doug Zongker2b0fdc62009-06-19 11:22:06 -070022# Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function
23# named "Register_<libname>()". Here we emit a little C function that
24# gets #included by updater.c. It calls all those registration
25# functions.
26
27# Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.
28# These libs are also linked in with updater, but we don't try to call
29# any sort of registration function for these. Use this variable for
30# any subsidiary static libraries required for your registered
31# extension libs.
32
33inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc
34
35# During the first pass of reading the makefiles, we dump the list of
36# extension libs to a temp file, then copy that to the ".list" file if
37# it is different than the existing .list (if any). The register.inc
38# file then uses the .list as a prerequisite, so it is only rebuilt
39# (and updater.o recompiled) when the list of extension libs changes.
40
41junk := $(shell mkdir -p $(dir $(inc));\
42 echo $(TARGET_RECOVERY_UPDATER_LIBS) > $(inc).temp;\
43 diff -q $(inc).temp $(inc).list || cp -f $(inc).temp $(inc).list)
44
45$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
46$(inc) : $(inc).list
47 $(hide) mkdir -p $(dir $@)
48 $(hide) echo "" > $@
49 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@)
50 $(hide) echo "void RegisterDeviceExtensions() {" >> $@
51 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@)
52 $(hide) echo "}" >> $@
53
54$(call intermediates-dir-for,EXECUTABLES,updater)/updater.o : $(inc)
55LOCAL_C_INCLUDES += $(dir $(inc))
56
Doug Zongker9931f7f2009-06-10 14:11:53 -070057LOCAL_MODULE := updater
58
59LOCAL_FORCE_STATIC_EXECUTABLE := true
60
61include $(BUILD_EXECUTABLE)