drm/tests/Makefile.am

69 lines
832 B
Makefile
Raw Normal View History

NULL:=#
2009-04-09 13:02:40 -06:00
AM_CPPFLAGS = \
-I $(top_srcdir)/include/drm \
2009-11-17 09:14:54 -07:00
-I $(top_srcdir)
2009-11-17 09:14:54 -07:00
LDADD = $(top_builddir)/libdrm.la
check_PROGRAMS = \
dristat \
drmstat
SUBDIRS =
2010-01-08 08:34:44 -07:00
if HAVE_LIBKMS
SUBDIRS += kmstest
endif
if HAVE_INTEL
endif
if HAVE_LIBUDEV
check_LTLIBRARIES = libdrmtest.la
2009-04-09 13:02:40 -06:00
libdrmtest_la_SOURCES = \
drmtest.c \
drmtest.h
2009-04-09 13:02:40 -06:00
libdrmtest_la_LIBADD = \
2009-11-17 09:14:54 -07:00
$(top_builddir)/libdrm.la \
$(LIBUDEV_LIBS)
2009-04-09 13:02:40 -06:00
LDADD += libdrmtest.la
XFAIL_TESTS = \
auth \
lock
TESTS = \
openclose \
getversion \
getclient \
getstats \
setversion \
updatedraw \
name_from_fd \
$(NULL)
SUBDIRS += vbltest $(NULL)
if HAVE_INTEL
SUBDIRS += \
modeprint \
modetest \
$(NULL)
TESTS += \
gem_basic \
gem_flink \
gem_readwrite \
gem_mmap \
$(NULL)
endif
check_PROGRAMS += $(TESTS)
endif