Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. #
  2. # Copyright (C) 2011 Intel Corporation
  3. #
  4. # Permission is hereby granted, free of charge, to any person obtaining a
  5. # copy of this software and associated documentation files (the "Software"),
  6. # to deal in the Software without restriction, including without limitation
  7. # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. # and/or sell copies of the Software, and to permit persons to whom the
  9. # Software is furnished to do so, subject to the following conditions:
  10. #
  11. # The above copyright notice and this permission notice shall be included
  12. # in all copies or substantial portions of the Software.
  13. #
  14. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  17. # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  20. # DEALINGS IN THE SOFTWARE.
  21. #
  22.  
  23. LOCAL_PATH := $(call my-dir)
  24.  
  25. # Import mesa_dri_common_INCLUDES.
  26. include $(LOCAL_PATH)/common/Makefile.sources
  27.  
  28. #-----------------------------------------------
  29. # Variables common to all DRI drivers
  30.  
  31. MESA_DRI_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/dri
  32. MESA_DRI_MODULE_UNSTRIPPED_PATH := $(TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)/dri
  33.  
  34. MESA_DRI_CFLAGS := \
  35.         -DFEATURE_GL=1 \
  36.         -DFEATURE_ES1=1 \
  37.         -DFEATURE_ES2=1 \
  38.         -DHAVE_ANDROID_PLATFORM
  39.  
  40. MESA_DRI_C_INCLUDES := \
  41.         $(call intermediates-dir-for,STATIC_LIBRARIES,libmesa_dri_common) \
  42.         $(addprefix $(MESA_TOP)/, $(mesa_dri_common_INCLUDES)) \
  43.         $(DRM_TOP) \
  44.         $(DRM_TOP)/include/drm \
  45.         external/expat/lib
  46.  
  47. MESA_DRI_WHOLE_STATIC_LIBRARIES := \
  48.         libmesa_glsl \
  49.         libmesa_dri_common \
  50.         libmesa_dricore
  51.  
  52. MESA_DRI_SHARED_LIBRARIES := \
  53.         libcutils \
  54.         libdl \
  55.         libdrm \
  56.         libexpat \
  57.         libglapi \
  58.         liblog
  59.  
  60. # All DRI modules must add this to LOCAL_GENERATED_SOURCES.
  61. MESA_DRI_OPTIONS_H := $(call intermediates-dir-for,STATIC_LIBRARIES,libmesa_dri_common)/xmlpool/options.h
  62.  
  63. #-----------------------------------------------
  64. # Build drivers and libmesa_dri_common
  65.  
  66. SUBDIRS := common
  67.  
  68. ifneq ($(filter i915, $(MESA_GPU_DRIVERS)),)
  69.         SUBDIRS += i915
  70. endif
  71.  
  72. ifneq ($(filter i965, $(MESA_GPU_DRIVERS)),)
  73.         SUBDIRS += i965
  74. endif
  75.  
  76. include $(foreach d, $(SUBDIRS), $(LOCAL_PATH)/$(d)/Android.mk)
  77.