diff options
author | Nick Sarnie <[email protected]> | 2014-09-12 18:20:46 -0400 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-10-14 16:16:08 +0100 |
commit | e5bf8d38db97045e42cfc42dd265be03ef4199ca (patch) | |
tree | aa4a88f671de578315235addf9d2ceb19188be87 /src/gallium/targets/pipe-loader/Makefile.am | |
parent | af897df5083fc94d5a2a011de9894fa1aa852fe2 (diff) |
ilo: Build pipe-loader for ilo
Trivial patch to create the pipe loader for ilo. All the code was already there.
Signed-off-by: Nick Sarnie <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/targets/pipe-loader/Makefile.am')
-rw-r--r-- | src/gallium/targets/pipe-loader/Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gallium/targets/pipe-loader/Makefile.am b/src/gallium/targets/pipe-loader/Makefile.am index 5f1330ab656..f1220176605 100644 --- a/src/gallium/targets/pipe-loader/Makefile.am +++ b/src/gallium/targets/pipe-loader/Makefile.am @@ -75,6 +75,20 @@ pipe_i915_la_LIBADD = \ endif +if HAVE_GALLIUM_ILO +pipe_LTLIBRARIES += pipe_i965.la + +pipe_i965_la_SOURCES = pipe_i965.c +nodist_EXTRA_pipe_i965_la_SOURCES = dummy.cpp +pipe_i965_la_LIBADD = \ + $(PIPE_LIBS) \ + $(top_builddir)/src/gallium/winsys/intel/drm/libintelwinsys.la \ + $(top_builddir)/src/gallium/drivers/ilo/libilo.la \ + $(LIBDRM_LIBS) \ + $(INTEL_LIBS) + +endif + if HAVE_GALLIUM_NOUVEAU pipe_LTLIBRARIES += pipe_nouveau.la |