From 95374225e865da3a30153f73e8bb536700d15459 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Thu, 8 Apr 2010 11:56:57 +0100 Subject: Enable compilation on non-Intel, non-DRM systems. A few of the tools can be performed post-mortem from a different system, so it is useful to be able to compile those tools on those foreign systems. Obviously, any program to interact with the PCI device or talk to GEM will fail on a non-Intel system. Signed-off-by: Chris Wilson --- benchmarks/Makefile.am | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'benchmarks/Makefile.am') diff --git a/benchmarks/Makefile.am b/benchmarks/Makefile.am index 3196b2c2..6829bbef 100644 --- a/benchmarks/Makefile.am +++ b/benchmarks/Makefile.am @@ -1,8 +1,15 @@ -bin_PROGRAMS = \ - intel_upload_blit_large \ - intel_upload_blit_large_gtt \ - intel_upload_blit_large_map \ - intel_upload_blit_small +NULL=# + +bin_PROGRAMS = $(NULL) + +if HAVE_DRM +bin_PROGRAMS += \ + intel_upload_blit_large \ + intel_upload_blit_large_gtt \ + intel_upload_blit_large_map \ + intel_upload_blit_small \ + $(NULL) +endif BENCHMARK_LIBS = \ ../lib/libintel_tools.la \ -- cgit v1.2.3