diff mbox

[3/5] android: Add makefile for the lib directory

Message ID 1391180260-23101-4-git-send-email-rafael.barbalho@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

rafael.barbalho@intel.com Jan. 31, 2014, 2:57 p.m. UTC
From: Rafael Barbalho <rafael.barbalho@intel.com>

The lib directory should really be compiled as a static library on its own
and be re-used by any tests or tools that require it.

Signed-off-by: Rafael Barbalho <rafael.barbalho@intel.com>
---
 lib/Android.mk | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 lib/Android.mk
diff mbox

Patch

diff --git a/lib/Android.mk b/lib/Android.mk
new file mode 100644
index 0000000..23c7d42
--- /dev/null
+++ b/lib/Android.mk
@@ -0,0 +1,31 @@ 
+LOCAL_PATH := $(call my-dir)
+
+include $(LOCAL_PATH)/Makefile.sources
+
+skip_lib_list := \
+    igt_kms.c \
+    igt_kms.h
+
+lib_list := $(filter-out $(skip_lib_list),$(libintel_tools_la_SOURCES))
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(lib_list)
+
+LOCAL_C_INCLUDES +=              \
+	$(LOCAL_PATH)/..
+
+LOCAL_EXPORT_C_INCLUDE_DIRS += $(LOCAL_PATH)
+
+LOCAL_CFLAGS += -DHAVE_LIBDRM_ATOMIC_PRIMITIVES
+LOCAL_CFLAGS += -DHAVE_STRUCT_SYSINFO_TOTALRAM
+LOCAL_CFLAGS += -DANDROID
+LOCAL_CFLAGS += -std=c99
+LOCAL_MODULE:= libintel_gpu_tools
+
+LOCAL_SHARED_LIBRARIES := libpciaccess  \
+			  libdrm        \
+			  libdrm_intel
+
+include $(BUILD_STATIC_LIBRARY)
+