automake: compact gallium/drivers and gallium/winsys makefiles

Rather than having two separate almost empty and identical makefiles,
compact them thus improving the configure and build time.
Additionally this makes the automake build symmetrical to the scons
and android one.

v2: Rebase on top of vc4, compact drivers + winsys on a single line.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Emil Velikov 2014-08-13 00:00:50 +01:00
parent 792041ebe5
commit fd7da27a43
5 changed files with 106 additions and 181 deletions

View file

@ -2205,9 +2205,9 @@ AC_CONFIG_FILES([Makefile
src/egl/wayland/wayland-drm/Makefile
src/egl/wayland/wayland-egl/Makefile
src/egl/wayland/wayland-egl/wayland-egl.pc
src/gallium/Makefile
src/gallium/auxiliary/Makefile
src/gallium/auxiliary/pipe-loader/Makefile
src/gallium/drivers/Makefile
src/gallium/drivers/freedreno/Makefile
src/gallium/drivers/galahad/Makefile
src/gallium/drivers/i915/Makefile
@ -2253,7 +2253,6 @@ AC_CONFIG_FILES([Makefile
src/gallium/targets/xvmc/Makefile
src/gallium/tests/trivial/Makefile
src/gallium/tests/unit/Makefile
src/gallium/winsys/Makefile
src/gallium/winsys/freedreno/drm/Makefile
src/gallium/winsys/i915/drm/Makefile
src/gallium/winsys/intel/drm/Makefile

View file

@ -50,9 +50,8 @@ endif
if HAVE_GALLIUM
SUBDIRS += \
gallium/auxiliary \
gallium/drivers \
gallium \
gallium/state_trackers \
gallium/winsys \
gallium/targets
if HAVE_GALLIUM_TESTS

104
src/gallium/Makefile.am Normal file
View file

@ -0,0 +1,104 @@
SUBDIRS =
##
## Gallium pipe drivers and their respective winsys'
##
SUBDIRS += \
drivers/galahad \
drivers/identity \
drivers/noop \
drivers/trace \
drivers/rbug
## freedreno/msm/kgsl
if HAVE_GALLIUM_FREEDRENO
SUBDIRS += drivers/freedreno winsys/freedreno/drm
endif
## i915g/i915
if HAVE_GALLIUM_I915
SUBDIRS += drivers/i915 winsys/i915/drm
endif
## ilo/i965
if HAVE_GALLIUM_ILO
SUBDIRS += drivers/ilo winsys/intel/drm
endif
## nouveau
if HAVE_GALLIUM_NOUVEAU
SUBDIRS += drivers/nouveau winsys/nouveau/drm
endif
## vmwgfx/svga
if HAVE_GALLIUM_SVGA
SUBDIRS += drivers/svga winsys/svga/drm
endif
## r300
if HAVE_GALLIUM_R300
SUBDIRS += drivers/r300
endif
## radeon - linked into r600 and radeonsi
if HAVE_GALLIUM_RADEON_COMMON
SUBDIRS += drivers/radeon
endif
## r600
if HAVE_GALLIUM_R600
SUBDIRS += drivers/r600
endif
## radeonsi
if HAVE_GALLIUM_RADEONSI
SUBDIRS += drivers/radeonsi
endif
## the radeon winsys - linked in by r300, r600 and radeonsi
if NEED_RADEON_DRM_WINSYS
SUBDIRS += winsys/radeon/drm
endif
## swrast/softpipe
if NEED_GALLIUM_SOFTPIPE_DRIVER
SUBDIRS += drivers/softpipe
## swrast/llvmpipe
if NEED_GALLIUM_LLVMPIPE_DRIVER
SUBDIRS += drivers/llvmpipe
endif
endif
## vc4/rpi
if HAVE_GALLIUM_VC4
SUBDIRS += drivers/vc4 winsys/vc4/drm
endif
## the sw winsys'
SUBDIRS += winsys/sw/null
if NEED_WINSYS_XLIB
SUBDIRS += winsys/sw/xlib
endif
if HAVE_DRISW
SUBDIRS += winsys/sw/dri
endif
if HAVE_DRI2
SUBDIRS += winsys/sw/kms-dri
endif
if HAVE_EGL_PLATFORM_FBDEV
SUBDIRS += winsys/sw/fbdev
endif
if HAVE_EGL_PLATFORM_WAYLAND
SUBDIRS += winsys/sw/wayland
endif
if NEED_WINSYS_WRAPPER
SUBDIRS += winsys/sw/wrapper
endif

View file

@ -1,100 +0,0 @@
AUTOMAKE_OPTIONS = subdir-objects
SUBDIRS = . galahad identity noop trace rbug
################################################################################
if HAVE_GALLIUM_FREEDRENO
SUBDIRS += freedreno
endif
################################################################################
if HAVE_GALLIUM_I915
SUBDIRS += i915
endif
################################################################################
if HAVE_GALLIUM_ILO
SUBDIRS += ilo
endif
################################################################################
if HAVE_GALLIUM_NOUVEAU
SUBDIRS += nouveau
endif
################################################################################
if HAVE_GALLIUM_SVGA
SUBDIRS += svga
endif
################################################################################
if HAVE_GALLIUM_RADEON_COMMON
SUBDIRS += radeon
endif
################################################################################
if HAVE_GALLIUM_R300
SUBDIRS += r300
endif
################################################################################
if HAVE_GALLIUM_R600
SUBDIRS += r600
endif
################################################################################
if HAVE_GALLIUM_RADEONSI
SUBDIRS += radeonsi
endif
################################################################################
if NEED_GALLIUM_SOFTPIPE_DRIVER
SUBDIRS += softpipe
endif
################################################################################
if NEED_GALLIUM_LLVMPIPE_DRIVER
SUBDIRS += llvmpipe
endif
################################################################################
if HAVE_GALLIUM_VC4
SUBDIRS += vc4
endif

View file

@ -1,77 +0,0 @@
# Copyright © 2013 Intel Corporation
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice (including the next
# paragraph) shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
SUBDIRS = sw/null
if NEED_WINSYS_XLIB
SUBDIRS += sw/xlib
endif
if HAVE_DRISW
SUBDIRS += sw/dri
endif
if HAVE_DRI2
SUBDIRS += sw/kms-dri
endif
if HAVE_EGL_PLATFORM_FBDEV
SUBDIRS += sw/fbdev
endif
if HAVE_EGL_PLATFORM_WAYLAND
SUBDIRS += sw/wayland
endif
if NEED_WINSYS_WRAPPER
SUBDIRS += sw/wrapper
endif
if NEED_NONNULL_WINSYS
if HAVE_GALLIUM_FREEDRENO
SUBDIRS += freedreno/drm
endif
if HAVE_GALLIUM_I915
SUBDIRS += i915/drm
endif
if HAVE_GALLIUM_ILO
SUBDIRS += intel/drm
endif
if HAVE_GALLIUM_NOUVEAU
SUBDIRS += nouveau/drm
endif
if NEED_RADEON_DRM_WINSYS
SUBDIRS += radeon/drm
endif
if HAVE_GALLIUM_SVGA
SUBDIRS += svga/drm
endif
if HAVE_GALLIUM_VC4
SUBDIRS += vc4/drm
endif
endif