Build libfdt as a static library. am: fe315a5351 am: 617e812368

am: 2fbd8efa1d

Change-Id: I50695f2542157cc9f8ed2f49c09fc34c93d89721
This commit is contained in:
LiChen 2016-09-15 19:02:28 +00:00 committed by android-build-merger
commit 8c4fe4f3f3

View file

@ -1,7 +1,6 @@
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
common_src_files := \
fdt.c \
fdt_ro.c \
fdt_wip.c \
@ -11,6 +10,24 @@ LOCAL_SRC_FILES := \
fdt_empty_tree.c \
fdt_addresses.c
#################################################
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(common_src_files)
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
LOCAL_MODULE := libfdt
include $(BUILD_STATIC_LIBRARY)
#################################################
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(common_src_files)
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
LOCAL_MODULE := libfdt
include $(BUILD_HOST_STATIC_LIBRARY)