diff options
author | Emil Velikov <[email protected]> | 2014-04-01 02:34:08 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-04-05 13:00:02 +0100 |
commit | ba5eba500884c85792b3de38c90a70b4b11dc432 (patch) | |
tree | 02ce60a3435a1bf19b30224546ef5bf4b0bd37af /src/gallium/tests/trivial | |
parent | 16c13aaeb87b296a60fd0898efc20984faf67565 (diff) |
automake: introduce GALLIUM_COMMON_LIB_DEPS
Rather than copying the core four dependencies all over gallium,
introduce the above variable to avoid all the duplication.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=76848
Tested-by: Vinson Lee <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/tests/trivial')
-rw-r--r-- | src/gallium/tests/trivial/Makefile.am | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gallium/tests/trivial/Makefile.am b/src/gallium/tests/trivial/Makefile.am index 15a81b3a696..9381429bd6c 100644 --- a/src/gallium/tests/trivial/Makefile.am +++ b/src/gallium/tests/trivial/Makefile.am @@ -16,9 +16,7 @@ LDADD = $(GALLIUM_PIPE_LOADER_CLIENT_LIBS) \ $(top_builddir)/src/gallium/winsys/sw/dri/libswdri.la \ $(top_builddir)/src/gallium/winsys/sw/null/libws_null.la \ $(top_builddir)/src/gallium/auxiliary/libgallium.la \ - $(DLOPEN_LIBS) \ - $(PTHREAD_LIBS) \ - -lm + $(GALLIUM_COMMON_LIB_DEPS) if NEED_PIPE_LOADER_XLIB LDADD += \ |