Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1 | # Copyright 2009 The Android Open Source Project |
| 2 | |
| 3 | LOCAL_PATH := $(call my-dir) |
| 4 | |
| 5 | updater_src_files := \ |
| 6 | install.c \ |
| 7 | updater.c |
| 8 | |
| 9 | # |
| 10 | # Build the device-side library |
| 11 | # |
| 12 | include $(CLEAR_VARS) |
| 13 | |
| 14 | LOCAL_SRC_FILES := $(updater_src_files) |
| 15 | |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 16 | LOCAL_STATIC_LIBRARIES := libapplypatch libedify libmtdutils libminzip libz |
| 17 | LOCAL_STATIC_LIBRARIES += libmincrypt libbz |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 18 | LOCAL_STATIC_LIBRARIES += libcutils libstdc++ libc |
| 19 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/.. |
| 20 | |
| 21 | LOCAL_MODULE := updater |
| 22 | |
| 23 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 24 | |
| 25 | include $(BUILD_EXECUTABLE) |