1SUBDIRS = util kms modeprint proptest modetest vbltest
2
3if HAVE_LIBKMS
4SUBDIRS += kmstest planetest
5endif
6
7if HAVE_RADEON
8SUBDIRS += radeon
9endif
10
11if HAVE_AMDGPU
12if HAVE_CUNIT
13SUBDIRS += amdgpu
14endif
15endif
16
17if HAVE_EXYNOS
18SUBDIRS += exynos
19endif
20
21if HAVE_TEGRA
22SUBDIRS += tegra
23endif
24
25if HAVE_ETNAVIV
26SUBDIRS += etnaviv
27endif
28
29if HAVE_NOUVEAU
30SUBDIRS += nouveau
31endif
32
33AM_CFLAGS = \
34	$(WARN_CFLAGS)\
35	-I $(top_srcdir)/include/drm \
36	-I $(top_srcdir)
37
38LDADD = $(top_builddir)/libdrm.la
39
40TESTS = \
41	drmsl \
42	hash \
43	random
44
45check_PROGRAMS = \
46	$(TESTS) \
47	drmdevice
48