diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2012-05-22 14:37:19 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2012-05-22 15:56:29 +0200 |
commit | 662d73219976ca820f878f63b5222e22e17c6328 (patch) | |
tree | a09dfb89044211a529c4c8f37996bcc288b5b8d6 /demos | |
parent | 0732cc59abc06151b8756a6890f13885cde7403b (diff) |
lib: extract kmstest_create_fb
We should get more kms tests soon, and not needing to copy-paste a
nice test pattern should be useful.
That establishes a firm depency of i-g-t on cairo over everything, but
I don't care so much about that.
Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'demos')
-rw-r--r-- | demos/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/Makefile.am b/demos/Makefile.am index 281cfe5a..49804d79 100644 --- a/demos/Makefile.am +++ b/demos/Makefile.am @@ -3,5 +3,5 @@ bin_PROGRAMS = \ $(NULL) AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/lib -AM_CFLAGS = $(DRM_CFLAGS) $(PCIACCESS_CFLAGS) $(CWARNFLAGS) -LDADD = $(top_builddir)/lib/libintel_tools.la $(DRM_LIBS) $(PCIACCESS_LIBS) +AM_CFLAGS = $(DRM_CFLAGS) $(PCIACCESS_CFLAGS) $(CWARNFLAGS) $(CAIRO_CFLAGS) +LDADD = $(top_builddir)/lib/libintel_tools.la $(DRM_LIBS) $(PCIACCESS_LIBS) $(CAIRO_LIBS) |