summaryrefslogtreecommitdiffstats
path: root/src/mesa/Android.mk
diff options
context:
space:
mode:
authorChad Versace <[email protected]>2012-11-07 14:22:54 -0800
committerChad Versace <[email protected]>2012-11-12 15:52:42 -0800
commitf2b638a997e384a04716cea83162cb2fa331669e (patch)
tree1ff00d6776efcb5d715b6e5e7d0823e7801bb668 /src/mesa/Android.mk
parenta665cf1226b80ec52a0c1a4a38378df4389e8ebf (diff)
android: Moves rules for libmesa_glsl_utils to separate makefile
The pair of files src/mesa/Android.mk and src/mesa/Android.gen.mk are too long and complex to be easily understood. This patch belongs to a series that decomposes them into several easily digestible makefiles. This patch move the rules for the host and target libmesa_glsl_utils.a from Android.mk to Android.libmesa_glsl_utils.mk. Signed-off-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa/Android.mk')
-rw-r--r--src/mesa/Android.mk33
1 files changed, 1 insertions, 32 deletions
diff --git a/src/mesa/Android.mk b/src/mesa/Android.mk
index 552378142c4..dad2b9a6cf1 100644
--- a/src/mesa/Android.mk
+++ b/src/mesa/Android.mk
@@ -113,35 +113,4 @@ include $(BUILD_STATIC_LIBRARY)
endif # MESA_BUILD_CLASSIC
-# ---------------------------------------
-# Build libmesa_glsl_utils
-#
-# It is used to avoid circular dependency between core mesa and glsl.
-# ---------------------------------------
-
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES := \
- program/hash_table.c \
- program/symbol_table.c
-
-LOCAL_MODULE := libmesa_glsl_utils
-
-include $(MESA_COMMON_MK)
-include $(BUILD_STATIC_LIBRARY)
-
-# ---------------------------------------
-# Build libmesa_glsl_utils for host
-# ---------------------------------------
-
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES := \
- program/hash_table.c \
- program/symbol_table.c
-
-LOCAL_MODULE := libmesa_glsl_utils
-LOCAL_IS_HOST_MODULE := true
-
-include $(MESA_COMMON_MK)
-include $(BUILD_HOST_STATIC_LIBRARY)
+include $(LOCAL_PATH)/Android.libmesa_glsl_utils.mk