diff options
author | Emil Velikov <[email protected]> | 2014-09-21 16:46:39 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-09-24 10:44:01 +0100 |
commit | 0f3c0ff17bad8da9dcb504560ad691db8294f6c9 (patch) | |
tree | 92a150711fb271f8316032c010dadb53f6fe489a /src/gallium/targets/egl-static | |
parent | 29c4ae0ebf36bebb38d0b506554540632819481c (diff) |
gallium/softpipe,llvmpipe: 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 <[email protected]>
Acked-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/gallium/targets/egl-static')
-rw-r--r-- | src/gallium/targets/egl-static/Makefile.am | 13 |
1 files changed, 2 insertions, 11 deletions
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) \ |