From: Emil Velikov Date: Sun, 20 Jul 2014 21:20:04 +0000 (+0100) Subject: android: reorder gallium SUBDIRS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ec668cbf8be1dd79ca0b7a9b68618dcefc729312;p=mesa.git android: reorder gallium SUBDIRS To be closer to its automake counterpart. Signed-off-by: Emil Velikov --- diff --git a/src/gallium/Android.mk b/src/gallium/Android.mk index 767361a8a23..bf99e4fb665 100644 --- a/src/gallium/Android.mk +++ b/src/gallium/Android.mk @@ -26,10 +26,11 @@ GALLIUM_TOP := $(call my-dir) GALLIUM_COMMON_MK := $(GALLIUM_TOP)/Android.common.mk -SUBDIRS := \ - targets/egl-static \ - state_trackers/egl \ - auxiliary +SUBDIRS := auxiliary + +# +# Gallium drivers and their respective winsys +# # swrast SUBDIRS += winsys/sw/android drivers/softpipe @@ -78,5 +79,10 @@ ifneq ($(filter vmwgfx, $(MESA_GPU_DRIVERS)),) SUBDIRS += winsys/svga/drm drivers/svga endif +# +# Gallium state trackers and their users (targets) +# +SUBDIRS += state_trackers/egl targets/egl-static + mkfiles := $(patsubst %,$(GALLIUM_TOP)/%/Android.mk,$(SUBDIRS)) include $(mkfiles)