diff options
author | Kristian Høgsberg <krh@redhat.com> | 2009-04-09 15:02:40 -0400 |
---|---|---|
committer | Kristian Høgsberg <krh@redhat.com> | 2009-04-09 15:02:40 -0400 |
commit | a85e07b9031c819f3cdf54b66c90ac0c450e3e75 (patch) | |
tree | f5c2df819f56117b9f8a5eacb0c2fce65b2f32db /tests | |
parent | 1faab66cfd1a854925da6ff7109aa614292dea90 (diff) |
test: Makefile.am grammar nazi
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index e5e9fc41..b1dad7ec 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,8 +1,8 @@ -AM_CFLAGS = \ +AM_CPPFLAGS = \ -I $(top_srcdir)/shared-core \ -I $(top_srcdir)/libdrm -AM_LDFLAGS = $(top_builddir)/libdrm/libdrm.la +LDADD = $(top_builddir)/libdrm/libdrm.la noinst_PROGRAMS = \ dristat \ @@ -15,14 +15,16 @@ SUBDIRS = \ if HAVE_LIBUDEV EXTRA_LTLIBRARIES = libdrmtest.la + libdrmtest_la_SOURCES = \ drmtest.c \ drmtest.h + libdrmtest_la_LIBADD = \ - $(top_builddir)/libdrm/libdrm.la \ + $(LDADD) \ $(LIBUDEV_LIBS) -LDADD = libdrmtest.la +LDADD += libdrmtest.la XFAIL_TESTS = \ auth \ |