mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
gallium/r300,r600,radeonsi: add automake target 'templates'
Rather than duplicating the libdeps, extra define... all over the targets, define them only once and use when applicable. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Acked-by: Christian König <christian.koenig@amd.com> Acked-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
fd4cd8e20a
commit
c2b5d7024e
9 changed files with 72 additions and 168 deletions
13
src/gallium/drivers/r300/Automake.inc
Normal file
13
src/gallium/drivers/r300/Automake.inc
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
if HAVE_GALLIUM_R300
|
||||
|
||||
TARGET_DRIVERS += r300
|
||||
TARGET_CPPFLAGS += -DGALLIUM_R300
|
||||
TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/r300/libr300.la \
|
||||
$(RADEON_LIBS) \
|
||||
$(INTEL_LIBS)
|
||||
|
||||
TARGET_RADEON_WINSYS ?= \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
|
||||
endif
|
||||
16
src/gallium/drivers/r600/Automake.inc
Normal file
16
src/gallium/drivers/r600/Automake.inc
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
if HAVE_GALLIUM_R600
|
||||
|
||||
TARGET_DRIVERS += r600
|
||||
TARGET_CPPFLAGS += -DGALLIUM_R600
|
||||
TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/r600/libr600.la \
|
||||
$(RADEON_LIBS) \
|
||||
$(LIBDRM_LIBS)
|
||||
|
||||
TARGET_RADEON_WINSYS ?= \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
|
||||
TARGET_RADEON_COMMON ?= \
|
||||
$(top_builddir)/src/gallium/drivers/radeon/libradeon.la
|
||||
|
||||
endif
|
||||
16
src/gallium/drivers/radeonsi/Automake.inc
Normal file
16
src/gallium/drivers/radeonsi/Automake.inc
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
if HAVE_GALLIUM_RADEONSI
|
||||
|
||||
TARGET_DRIVERS += radeonsi
|
||||
TARGET_CPPFLAGS += -DGALLIUM_RADEONSI
|
||||
TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/radeonsi/libradeonsi.la \
|
||||
$(RADEON_LIBS) \
|
||||
$(LIBDRM_LIBS)
|
||||
|
||||
TARGET_RADEON_WINSYS ?= \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
|
||||
TARGET_RADEON_COMMON ?= \
|
||||
$(top_builddir)/src/gallium/drivers/radeon/libradeon.la
|
||||
|
||||
endif
|
||||
|
|
@ -74,39 +74,9 @@ include $(top_srcdir)/src/gallium/drivers/ilo/Automake.inc
|
|||
|
||||
include $(top_srcdir)/src/gallium/drivers/nouveau/Automake.inc
|
||||
|
||||
if NEED_RADEON_DRM_WINSYS
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_RADEON_COMMON
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/radeon/libradeon.la
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_R300
|
||||
MEGADRIVERS += r300
|
||||
STATIC_TARGET_CPPFLAGS += -DGALLIUM_R300
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/r300/libr300.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_R600
|
||||
MEGADRIVERS += r600
|
||||
STATIC_TARGET_CPPFLAGS += -DGALLIUM_R600
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/r600/libr600.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_RADEONSI
|
||||
MEGADRIVERS += radeonsi
|
||||
STATIC_TARGET_CPPFLAGS += -DGALLIUM_RADEONSI
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/radeonsi/libradeonsi.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
include $(top_srcdir)/src/gallium/drivers/r300/Automake.inc
|
||||
include $(top_srcdir)/src/gallium/drivers/r600/Automake.inc
|
||||
include $(top_srcdir)/src/gallium/drivers/radeonsi/Automake.inc
|
||||
|
||||
include $(top_srcdir)/src/gallium/drivers/svga/Automake.inc
|
||||
|
||||
|
|
@ -148,7 +118,8 @@ if HAVE_GALLIUM_STATIC_TARGETS
|
|||
|
||||
gallium_dri_la_SOURCES += target.c
|
||||
AM_CPPFLAGS += $(STATIC_TARGET_CPPFLAGS) $(TARGET_CPPFLAGS)
|
||||
gallium_dri_la_LIBADD += $(STATIC_TARGET_LIB_DEPS) $(TARGET_LIB_DEPS)
|
||||
gallium_dri_la_LIBADD += $(STATIC_TARGET_LIB_DEPS) $(TARGET_LIB_DEPS) \
|
||||
$(TARGET_RADEON_WINSYS) $(TARGET_RADEON_COMMON)
|
||||
|
||||
else # HAVE_GALLIUM_STATIC_TARGETS
|
||||
|
||||
|
|
|
|||
|
|
@ -167,36 +167,9 @@ include $(top_srcdir)/src/gallium/drivers/ilo/Automake.inc
|
|||
|
||||
include $(top_srcdir)/src/gallium/drivers/nouveau/Automake.inc
|
||||
|
||||
if NEED_RADEON_DRM_WINSYS
|
||||
egl_gallium_la_LIBADD += \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_RADEON_COMMON
|
||||
egl_gallium_la_LIBADD += \
|
||||
$(top_builddir)/src/gallium/drivers/radeon/libradeon.la
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_R300
|
||||
egl_gallium_la_CPPFLAGS += -DGALLIUM_R300
|
||||
egl_gallium_la_LIBADD += \
|
||||
$(top_builddir)/src/gallium/drivers/r300/libr300.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_R600
|
||||
egl_gallium_la_CPPFLAGS += -DGALLIUM_R600
|
||||
egl_gallium_la_LIBADD += \
|
||||
$(top_builddir)/src/gallium/drivers/r600/libr600.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_RADEONSI
|
||||
egl_gallium_la_CPPFLAGS += -DGALLIUM_RADEONSI
|
||||
egl_gallium_la_LIBADD += \
|
||||
$(top_builddir)/src/gallium/drivers/radeonsi/libradeonsi.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
include $(top_srcdir)/src/gallium/drivers/r300/Automake.inc
|
||||
include $(top_srcdir)/src/gallium/drivers/r600/Automake.inc
|
||||
include $(top_srcdir)/src/gallium/drivers/radeonsi/Automake.inc
|
||||
|
||||
include $(top_srcdir)/src/gallium/drivers/svga/Automake.inc
|
||||
|
||||
|
|
@ -215,7 +188,9 @@ egl_gallium_la_LIBADD += \
|
|||
endif
|
||||
|
||||
egl_gallium_la_CPPFLAGS += $(TARGET_CPPFLAGS)
|
||||
egl_gallium_la_LIBADD += $(TARGET_LIB_DEPS)
|
||||
egl_gallium_la_LIBADD += $(TARGET_LIB_DEPS) \
|
||||
$(TARGET_RADEON_WINSYS) $(TARGET_RADEON_COMMON)
|
||||
|
||||
|
||||
#else # HAVE_GALLIUM_STATIC_TARGETS
|
||||
|
||||
|
|
|
|||
|
|
@ -66,36 +66,9 @@ include $(top_srcdir)/src/gallium/drivers/ilo/Automake.inc
|
|||
|
||||
include $(top_srcdir)/src/gallium/drivers/nouveau/Automake.inc
|
||||
|
||||
if NEED_RADEON_DRM_WINSYS
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_RADEON_COMMON
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/radeon/libradeon.la
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_R300
|
||||
STATIC_TARGET_CPPFLAGS += -DGALLIUM_R300
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/r300/libr300.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_R600
|
||||
STATIC_TARGET_CPPFLAGS += -DGALLIUM_R600
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/r600/libr600.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_RADEONSI
|
||||
STATIC_TARGET_CPPFLAGS += -DGALLIUM_RADEONSI
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/radeonsi/libradeonsi.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
include $(top_srcdir)/src/gallium/drivers/r300/Automake.inc
|
||||
include $(top_srcdir)/src/gallium/drivers/r600/Automake.inc
|
||||
include $(top_srcdir)/src/gallium/drivers/radeonsi/Automake.inc
|
||||
|
||||
include $(top_srcdir)/src/gallium/drivers/svga/Automake.inc
|
||||
|
||||
|
|
@ -103,7 +76,8 @@ include $(top_srcdir)/src/gallium/drivers/freedreno/Automake.inc
|
|||
|
||||
gbm_gallium_drm_la_SOURCES += target.c
|
||||
gbm_gallium_drm_la_CPPFLAGS = $(STATIC_TARGET_CPPFLAGS) $(TARGET_CPPFLAGS)
|
||||
gbm_gallium_drm_la_LIBADD += $(STATIC_TARGET_LIB_DEPS) $(TARGET_LIB_DEPS)
|
||||
gbm_gallium_drm_la_LIBADD += $(STATIC_TARGET_LIB_DEPS) $(TARGET_LIB_DEPS) \
|
||||
$(TARGET_RADEON_WINSYS) $(TARGET_RADEON_COMMON)
|
||||
|
||||
else # HAVE_GALLIUM_STATIC_TARGETS
|
||||
gbm_gallium_drm_la_LIBADD += \
|
||||
|
|
|
|||
|
|
@ -42,39 +42,13 @@ TARGET_LIB_DEPS =
|
|||
|
||||
include $(top_srcdir)/src/gallium/drivers/nouveau/Automake.inc
|
||||
|
||||
# Radeon winsys chaos
|
||||
if HAVE_GALLIUM_R600
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
else
|
||||
if HAVE_GALLIUM_RADEONSI
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
endif
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_RADEON_COMMON
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/radeon/libradeon.la
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_R600
|
||||
STATIC_TARGET_CPPFLAGS += -DGALLIUM_R600
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/r600/libr600.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_RADEONSI
|
||||
STATIC_TARGET_CPPFLAGS += -DGALLIUM_RADEONSI
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/radeonsi/libradeonsi.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
include $(top_srcdir)/src/gallium/drivers/r600/Automake.inc
|
||||
include $(top_srcdir)/src/gallium/drivers/radeonsi/Automake.inc
|
||||
|
||||
libomx_mesa_la_SOURCES += target.c
|
||||
libomx_mesa_la_CPPFLAGS = $(STATIC_TARGET_CPPFLAGS) $(TARGET_CPPFLAGS)
|
||||
libomx_mesa_la_LIBADD += $(STATIC_TARGET_LIB_DEPS) $(TARGET_LIB_DEPS)
|
||||
libomx_mesa_la_LIBADD += $(STATIC_TARGET_LIB_DEPS) $(TARGET_LIB_DEPS) \
|
||||
$(TARGET_RADEON_WINSYS) $(TARGET_RADEON_COMMON)
|
||||
|
||||
else # HAVE_GALLIUM_STATIC_TARGETS
|
||||
|
||||
|
|
|
|||
|
|
@ -48,43 +48,15 @@ TARGET_LIB_DEPS =
|
|||
|
||||
include $(top_srcdir)/src/gallium/drivers/nouveau/Automake.inc
|
||||
|
||||
# Radeon winsys chaos
|
||||
if HAVE_GALLIUM_R600
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
else
|
||||
if HAVE_GALLIUM_RADEONSI
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la
|
||||
endif
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_RADEON_COMMON
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/radeon/libradeon.la
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_R600
|
||||
MEGADRIVERS += r600
|
||||
STATIC_TARGET_CPPFLAGS += -DGALLIUM_R600
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/r600/libr600.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
|
||||
if HAVE_GALLIUM_RADEONSI
|
||||
MEGADRIVERS += radeonsi
|
||||
STATIC_TARGET_CPPFLAGS += -DGALLIUM_RADEONSI
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/drivers/radeonsi/libradeonsi.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
include $(top_srcdir)/src/gallium/drivers/r600/Automake.inc
|
||||
include $(top_srcdir)/src/gallium/drivers/radeonsi/Automake.inc
|
||||
|
||||
if HAVE_GALLIUM_STATIC_TARGETS
|
||||
|
||||
libvdpau_gallium_la_SOURCES += target.c
|
||||
libvdpau_gallium_la_CPPFLAGS = $(STATIC_TARGET_CPPFLAGS) $(TARGET_CPPFLAGS)
|
||||
libvdpau_gallium_la_LIBADD += $(STATIC_TARGET_LIB_DEPS) $(TARGET_LIB_DEPS)
|
||||
libvdpau_gallium_la_LIBADD += $(STATIC_TARGET_LIB_DEPS) $(TARGET_LIB_DEPS) \
|
||||
$(TARGET_RADEON_WINSYS) $(TARGET_RADEON_COMMON)
|
||||
|
||||
else # HAVE_GALLIUM_STATIC_TARGETS
|
||||
|
||||
|
|
|
|||
|
|
@ -43,21 +43,14 @@ TARGET_LIB_DEPS =
|
|||
|
||||
include $(top_srcdir)/src/gallium/drivers/nouveau/Automake.inc
|
||||
|
||||
if HAVE_GALLIUM_R600
|
||||
MEGADRIVERS += r600
|
||||
STATIC_TARGET_CPPFLAGS += -DGALLIUM_R600
|
||||
STATIC_TARGET_LIB_DEPS += \
|
||||
$(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la \
|
||||
$(top_builddir)/src/gallium/drivers/radeon/libradeon.la \
|
||||
$(top_builddir)/src/gallium/drivers/r600/libr600.la \
|
||||
$(RADEON_LIBS)
|
||||
endif
|
||||
include $(top_srcdir)/src/gallium/drivers/r600/Automake.inc
|
||||
|
||||
if HAVE_GALLIUM_STATIC_TARGETS
|
||||
|
||||
libXvMCgallium_la_SOURCES += target.c
|
||||
libXvMCgallium_la_CPPFLAGS = $(STATIC_TARGET_CPPFLAGS) $(TARGET_CPPFLAGS)
|
||||
libXvMCgallium_la_LIBADD += $(STATIC_TARGET_LIB_DEPS) $(TARGET_LIB_DEPS)
|
||||
libXvMCgallium_la_LIBADD += $(STATIC_TARGET_LIB_DEPS) $(TARGET_LIB_DEPS) \
|
||||
$(TARGET_RADEON_WINSYS) $(TARGET_RADEON_COMMON)
|
||||
|
||||
else # HAVE_GALLIUM_STATIC_TARGETS
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue