blob: 2716d4868f5826497fab37185fa235c8dc5df2d1 [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
16LOCAL_STATIC_LIBRARIES := libedify libmtdutils libminzip libz
17LOCAL_STATIC_LIBRARIES += libcutils libstdc++ libc
18LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
19
20LOCAL_MODULE := updater
21
22LOCAL_FORCE_STATIC_EXECUTABLE := true
23
24include $(BUILD_EXECUTABLE)