From 5c1c91b3d381a51ea57fb68242f8645e63d806bd Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Wed, 30 Nov 2016 19:04:33 +0000 Subject: [PATCH] tests: automake: reorder makefile contents Purely cosmetic changes. Signed-off-by: Emil Velikov --- tests/Makefile.am | 15 +++++++-------- 1 file 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