diff options
author | marha <marha@users.sourceforge.net> | 2011-08-31 10:31:32 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-08-31 10:31:32 +0200 |
commit | d14fe6598b87092374b1be6eb655153d270c3066 (patch) | |
tree | 77c5d19db06d8ca77ac717a5e579aa346f9cfb13 /mesalib/src/mesa/Android.mk | |
parent | 82ce0534a7bc89f1ed93b4b952b30ceb3d94210d (diff) | |
download | vcxsrv-d14fe6598b87092374b1be6eb655153d270c3066.tar.gz vcxsrv-d14fe6598b87092374b1be6eb655153d270c3066.tar.bz2 vcxsrv-d14fe6598b87092374b1be6eb655153d270c3066.zip |
mesa git update 31 aug 2011
Diffstat (limited to 'mesalib/src/mesa/Android.mk')
-rw-r--r-- | mesalib/src/mesa/Android.mk | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/mesalib/src/mesa/Android.mk b/mesalib/src/mesa/Android.mk index 67808d491..f21ba3aa0 100644 --- a/mesalib/src/mesa/Android.mk +++ b/mesalib/src/mesa/Android.mk @@ -25,6 +25,12 @@ LOCAL_PATH := $(call my-dir) +# Import the following variables: +# MESA_CXX_SOURCES +# MESA_GALLIUM_CXX_SOURCES +# MESA_GALLIUM_SOURCES +# MESA_SOURCES +# X86_SOURCES include $(LOCAL_PATH)/sources.mak common_CFLAGS := \ @@ -83,6 +89,35 @@ include $(BUILD_STATIC_LIBRARY) endif # MESA_BUILD_GALLIUM # --------------------------------------- +# Build libmesa_dricore for DRI modules +# --------------------------------------- + +ifeq ($(strip $(MESA_BUILD_CLASSIC)),true) + +include $(CLEAR_VARS) + +LOCAL_MODULE := libmesa_dricore +LOCAL_MODULE_CLASS := STATIC_LIBRARIES + +LOCAL_CFLAGS := \ + $(common_CFLAGS) \ + -DFEATURE_GL=1 + +LOCAL_C_INCLUDES := \ + $(common_C_INCLUDES) + +LOCAL_SRC_FILES := \ + $(MESA_SOURCES) \ + $(MESA_CXX_SOURCES) \ + $(common_ASM) + +include $(LOCAL_PATH)/Android.gen.mk +include $(MESA_COMMON_MK) +include $(BUILD_STATIC_LIBRARY) + +endif # MESA_BUILD_CLASSIC + +# --------------------------------------- # Build libmesa_glsl_utils # # It is used to avoid circular dependency between core mesa and glsl. |