summaryrefslogtreecommitdiff
path: root/amdgpu
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2017-01-22 16:59:42 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2017-01-27 15:48:16 +0000
commit03d2e91d00cb78d49fe170fb19a29107951a8c96 (patch)
treeb8775425a14ddad94aca2b33405c13d1e9407e22 /amdgpu
parentde5b41ef5ab617e5284596e220bc72f6065919f5 (diff)
downloadlibdrm-03d2e91d00cb78d49fe170fb19a29107951a8c96.tar.gz
libdrm-03d2e91d00cb78d49fe170fb19a29107951a8c96.tar.bz2
libdrm-03d2e91d00cb78d49fe170fb19a29107951a8c96.zip
android: introduce Android.common.mk to reduce boilerplate
... across the makefiles. Currently this isn't much but that will change shortly. As an added bonus this fixes all present and future cases where we've forgotten to strip out the headers from LOCAL_SRC_FILES. In a couple of cases (the tests) we start setting LOCAL_EXPORT_C_INCLUDE_DIRS, which shouldn't be an issue. Cc: Chih-Wei Huang <cwhuang@android-x86.org> Cc: Rob Herring <robh@kernel.org> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'amdgpu')
-rw-r--r--amdgpu/Android.mk7
1 files changed, 2 insertions, 5 deletions
diff --git a/amdgpu/Android.mk b/amdgpu/Android.mk
index 332d9570..bf0611ba 100644
--- a/amdgpu/Android.mk
+++ b/amdgpu/Android.mk
@@ -8,10 +8,7 @@ LOCAL_MODULE := libdrm_amdgpu
LOCAL_SHARED_LIBRARIES := libdrm
-LOCAL_SRC_FILES := $(patsubst %.h, , $(LIBDRM_AMDGPU_FILES))
-LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
-
-LOCAL_CFLAGS := \
- -DHAVE_LIBDRM_ATOMIC_PRIMITIVES=1
+LOCAL_SRC_FILES := $(LIBDRM_AMDGPU_FILES)
+include $(LIBDRM_COMMON_MK)
include $(BUILD_SHARED_LIBRARY)