diff options
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/dri/Makefile.am | 21 | ||||
-rw-r--r-- | src/gallium/targets/egl-static/Makefile.am | 13 |
2 files changed, 4 insertions, 30 deletions
diff --git a/src/gallium/targets/dri/Makefile.am b/src/gallium/targets/dri/Makefile.am index fe9624fa301..b74c29e5547 100644 --- a/src/gallium/targets/dri/Makefile.am +++ b/src/gallium/targets/dri/Makefile.am @@ -84,25 +84,8 @@ include $(top_srcdir)/src/gallium/drivers/freedreno/Automake.inc include $(top_srcdir)/src/gallium/drivers/vc4/Automake.inc -if HAVE_GALLIUM_SOFTPIPE -MEGADRIVERS += swrast -STATIC_TARGET_CPPFLAGS += -DGALLIUM_SOFTPIPE -STATIC_TARGET_LIB_DEPS += \ - $(top_builddir)/src/gallium/winsys/sw/dri/libswdri.la \ - $(top_builddir)/src/gallium/drivers/softpipe/libsoftpipe.la - -if HAVE_DRI2 -MEGADRIVERS += kms_swrast -STATIC_TARGET_LIB_DEPS += \ - $(top_builddir)/src/gallium/winsys/sw/kms-dri/libswkmsdri.la -endif -endif - -if HAVE_GALLIUM_LLVMPIPE -STATIC_TARGET_CPPFLAGS += -DGALLIUM_LLVMPIPE -STATIC_TARGET_LIB_DEPS += \ - $(top_builddir)/src/gallium/drivers/llvmpipe/libllvmpipe.la -endif +include $(top_srcdir)/src/gallium/drivers/softpipe/Automake.inc +include $(top_srcdir)/src/gallium/drivers/llvmpipe/Automake.inc if HAVE_GALLIUM_STATIC_TARGETS diff --git a/src/gallium/targets/egl-static/Makefile.am b/src/gallium/targets/egl-static/Makefile.am index fdb1ba2ced8..9e0b1f76ddf 100644 --- a/src/gallium/targets/egl-static/Makefile.am +++ b/src/gallium/targets/egl-static/Makefile.am @@ -175,17 +175,8 @@ include $(top_srcdir)/src/gallium/drivers/svga/Automake.inc include $(top_srcdir)/src/gallium/drivers/freedreno/Automake.inc -if HAVE_GALLIUM_SOFTPIPE -egl_gallium_la_CPPFLAGS += -DGALLIUM_SOFTPIPE -egl_gallium_la_LIBADD += \ - $(top_builddir)/src/gallium/drivers/softpipe/libsoftpipe.la -endif - -if HAVE_GALLIUM_LLVMPIPE -egl_gallium_la_CPPFLAGS += -DGALLIUM_LLVMPIPE -egl_gallium_la_LIBADD += \ - $(top_builddir)/src/gallium/drivers/llvmpipe/libllvmpipe.la -endif +include $(top_srcdir)/src/gallium/drivers/softpipe/Automake.inc +include $(top_srcdir)/src/gallium/drivers/llvmpipe/Automake.inc egl_gallium_la_CPPFLAGS += $(TARGET_CPPFLAGS) egl_gallium_la_LIBADD += $(TARGET_LIB_DEPS) \ |