blob: 1159d7bb8e1bf712c3f1d15541d47f608f56ae3a [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 Zongker8edb00c2009-06-11 17:21:44 -070016LOCAL_STATIC_LIBRARIES := libapplypatch libedify libmtdutils libminzip libz
17LOCAL_STATIC_LIBRARIES += libmincrypt libbz
Doug Zongker9931f7f2009-06-10 14:11:53 -070018LOCAL_STATIC_LIBRARIES += libcutils libstdc++ libc
19LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
20
21LOCAL_MODULE := updater
22
23LOCAL_FORCE_STATIC_EXECUTABLE := true
24
25include $(BUILD_EXECUTABLE)