dtbhtool: Define both host and target libdtbimg
authorKevin F. Haggerty <haggertk@lineageos.org>
Fri, 5 Jan 2018 16:39:35 +0000 (09:39 -0700)
committerKevin F. Haggerty <haggertk@lineageos.org>
Fri, 5 Jan 2018 16:59:33 +0000 (09:59 -0700)
* The utilities need it and not defining the target library results
  in a missing dependency

Change-Id: I745d8586a4a2cc5e3b8bdbe4a7e9dc19e1161db6

dtbhtool/Android.mk

index 7769e9c981ab9f49469057da2e4ab061192e314a..82094bf5ff34602ed30c67c7986c385ce4aa8a26 100644 (file)
@@ -1,12 +1,11 @@
 LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
 
+# Host static library
+include $(CLEAR_VARS)
 LOCAL_SRC_FILES := dtbimg.c
 LOCAL_STATIC_LIBRARIES := libfdt
 LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/libdtbimg
-
 LOCAL_MODULE := libdtbimg
-
 include $(BUILD_HOST_STATIC_LIBRARY)
 
 include $(CLEAR_VARS)
@@ -32,6 +31,14 @@ LOCAL_MODULE := dtbhtoolExynos
 
 include $(BUILD_HOST_EXECUTABLE)
 
+# Target static library
+include $(CLEAR_VARS)
+LOCAL_SRC_FILES := dtbimg.c
+LOCAL_STATIC_LIBRARIES := libfdt
+LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/libdtbimg
+LOCAL_MODULE := libdtbimg
+include $(BUILD_STATIC_LIBRARY)
+
 include $(CLEAR_VARS)
 LOCAL_SRC_FILES := mkbootimg.c
 LOCAL_STATIC_LIBRARIES := libdtbimg libfdt libcrypto_static libcutils libc