2015-12-09 10:37:42 -07:00
|
|
|
SUBDIRS = util kms modeprint proptest modetest vbltest
|
2009-10-03 16:17:57 -06:00
|
|
|
|
2010-01-08 08:34:44 -07:00
|
|
|
if HAVE_LIBKMS
|
2015-03-10 12:12:28 -06:00
|
|
|
SUBDIRS += kmstest
|
2010-01-08 08:34:44 -07:00
|
|
|
endif
|
|
|
|
|
2011-11-10 14:47:10 -07:00
|
|
|
if HAVE_RADEON
|
|
|
|
SUBDIRS += radeon
|
|
|
|
endif
|
|
|
|
|
2015-04-20 10:15:23 -06:00
|
|
|
if HAVE_AMDGPU
|
|
|
|
if HAVE_CUNIT
|
|
|
|
SUBDIRS += amdgpu
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2013-02-18 05:51:00 -07:00
|
|
|
if HAVE_EXYNOS
|
|
|
|
SUBDIRS += exynos
|
|
|
|
endif
|
|
|
|
|
2014-02-19 06:48:31 -07:00
|
|
|
if HAVE_TEGRA
|
|
|
|
SUBDIRS += tegra
|
|
|
|
endif
|
|
|
|
|
2015-03-10 12:02:20 -06:00
|
|
|
AM_CFLAGS = \
|
|
|
|
$(WARN_CFLAGS)\
|
|
|
|
-I $(top_srcdir)/include/drm \
|
|
|
|
-I $(top_srcdir)
|
|
|
|
|
|
|
|
LDADD = $(top_builddir)/libdrm.la
|
|
|
|
|
|
|
|
check_PROGRAMS = \
|
|
|
|
dristat \
|
2015-09-09 09:48:29 -06:00
|
|
|
drmdevice \
|
2015-04-05 08:12:48 -06:00
|
|
|
drmstat
|
2015-03-10 12:02:20 -06:00
|
|
|
|
2015-09-07 04:02:14 -06:00
|
|
|
dristat_LDADD = -lm
|
|
|
|
|
2015-02-26 03:54:03 -07:00
|
|
|
if HAVE_NOUVEAU
|
|
|
|
SUBDIRS += nouveau
|
|
|
|
endif
|
|
|
|
|
2015-03-20 14:58:29 -06:00
|
|
|
TESTS = \
|
2015-04-05 08:12:16 -06:00
|
|
|
drmsl \
|
2015-04-05 08:12:48 -06:00
|
|
|
hash \
|
|
|
|
random
|
2015-03-20 14:58:29 -06:00
|
|
|
|
2009-04-06 15:13:01 -06:00
|
|
|
if HAVE_LIBUDEV
|
|
|
|
|
2010-05-12 11:55:34 -06:00
|
|
|
check_LTLIBRARIES = libdrmtest.la
|
2009-04-09 13:02:40 -06:00
|
|
|
|
2007-07-19 05:59:59 -06:00
|
|
|
libdrmtest_la_SOURCES = \
|
|
|
|
drmtest.c \
|
|
|
|
drmtest.h
|
2009-04-09 13:02:40 -06:00
|
|
|
|
2015-02-25 06:00:08 -07:00
|
|
|
LDADD += \
|
|
|
|
libdrmtest.la \
|
2009-04-06 15:13:01 -06:00
|
|
|
$(LIBUDEV_LIBS)
|
2007-07-19 05:59:59 -06:00
|
|
|
|
|
|
|
|
2009-04-06 15:18:17 -06:00
|
|
|
XFAIL_TESTS = \
|
|
|
|
auth \
|
|
|
|
lock
|
|
|
|
|
2015-03-20 14:58:29 -06:00
|
|
|
TESTS += \
|
2009-04-06 15:18:17 -06:00
|
|
|
openclose \
|
|
|
|
getversion \
|
|
|
|
getclient \
|
|
|
|
getstats \
|
|
|
|
setversion \
|
|
|
|
updatedraw \
|
2015-03-10 12:01:24 -06:00
|
|
|
name_from_fd
|
2015-03-20 14:58:29 -06:00
|
|
|
endif
|
2009-10-03 16:17:57 -06:00
|
|
|
|
2010-05-12 11:55:34 -06:00
|
|
|
check_PROGRAMS += $(TESTS)
|