create the new libandroidfw from parts of libui and libutils Change-Id: I1584995616fff5d527a2aba63921b682a6194d58
16 lines
324 B
Makefile
16 lines
324 B
Makefile
# Copyright 2009 The Android Open Source Project
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= backup.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := libcutils libutils libandroidfw
|
|
|
|
LOCAL_MODULE:= btool
|
|
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
|
|
LOCAL_MODULE_TAGS := debug
|
|
|
|
include $(BUILD_EXECUTABLE)
|