Build libfdt as a static library. am: fe315a5351

am: 617e812368

Change-Id: I38f54cba0a0d6b0ab1322967eba9518991ae8315
This commit is contained in:
LiChen 2016-09-15 18:59:57 +00:00 committed by android-build-merger
commit 2fbd8efa1d

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)