mesa-drm/tests/kms/Makefile.am
Thierry Reding e0ec59efb1 tests: kms: Implement CRTC stealing test
This test program sets a mode and framebuffer on a connector and cycles
through all CRTCs, moving the connector to each of them in turn. This is
useful to verify that CRTC stealing is properly handled in the DRM core
and drivers.

Signed-off-by: Thierry Reding <treding@nvidia.com>
2015-12-18 17:44:08 +00:00

31 lines
593 B
Makefile

AM_CPPFLAGS = \
-I$(top_srcdir)/include/drm \
-I$(top_srcdir)/tests \
-I$(top_srcdir)
AM_CFLAGS = \
$(WARN_CFLAGS)
noinst_LTLIBRARIES = libkms-test.la
libkms_test_la_SOURCES = \
libkms-test.h \
libkms-test-crtc.c \
libkms-test-device.c \
libkms-test-framebuffer.c \
libkms-test-plane.c \
libkms-test-screen.c
libkms_test_la_LIBADD = \
$(top_builddir)/libdrm.la
if HAVE_INSTALL_TESTS
bin_PROGRAMS = \
kms-steal-crtc
else
noinst_PROGRAMS = \
kms-steal-crtc
endif
kms_steal_crtc_SOURCES = kms-steal-crtc.c
kms_steal_crtc_LDADD = libkms-test.la ../util/libutil.la $(CAIRO_LIBS)