summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2016-11-30 19:04:33 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2016-12-05 17:24:32 +0000
commit5c1c91b3d381a51ea57fb68242f8645e63d806bd (patch)
tree381d9bf4a8a4b5d29aecb46cbc85b2413c451a3a /tests
parent0ec7252a1deba3bac78b5ba1ebd2898f6bbf0332 (diff)
tests: automake: reorder makefile contents
Purely cosmetic changes. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am15
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 136ccced..0355a925 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -26,6 +26,10 @@ if HAVE_ETNAVIV
SUBDIRS += etnaviv
endif
+if HAVE_NOUVEAU
+SUBDIRS += nouveau
+endif
+
AM_CFLAGS = \
$(WARN_CFLAGS)\
-I $(top_srcdir)/include/drm \
@@ -33,16 +37,11 @@ AM_CFLAGS = \
LDADD = $(top_builddir)/libdrm.la
-check_PROGRAMS = \
- drmdevice
-
-if HAVE_NOUVEAU
-SUBDIRS += nouveau
-endif
-
TESTS = \
drmsl \
hash \
random
-check_PROGRAMS += $(TESTS)
+check_PROGRAMS = \
+ $(TESTS) \
+ drmdevice