diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 8 | ||||
-rw-r--r-- | tests/modeprint/Makefile.am | 10 | ||||
-rw-r--r-- | tests/modetest/Makefile.am | 10 |
3 files changed, 14 insertions, 14 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index af44d6a3..d044474d 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,10 +1,10 @@ NULL:=# AM_CPPFLAGS = \ - -I $(top_srcdir)/shared-core \ - -I $(top_srcdir)/libdrm + -I $(top_srcdir)/include/drm \ + -I $(top_srcdir) -LDADD = $(top_builddir)/libdrm/libdrm.la +LDADD = $(top_builddir)/libdrm.la noinst_PROGRAMS = \ dristat \ @@ -24,7 +24,7 @@ libdrmtest_la_SOURCES = \ drmtest.h libdrmtest_la_LIBADD = \ - $(top_builddir)/libdrm/libdrm.la \ + $(top_builddir)/libdrm.la \ $(LIBUDEV_LIBS) LDADD += libdrmtest.la diff --git a/tests/modeprint/Makefile.am b/tests/modeprint/Makefile.am index 77f8ec78..2ae0fdc6 100644 --- a/tests/modeprint/Makefile.am +++ b/tests/modeprint/Makefile.am @@ -1,7 +1,7 @@ AM_CFLAGS = \ - -I$(top_srcdir)/shared-core \ - -I$(top_srcdir)/libdrm/intel/ \ - -I$(top_srcdir)/libdrm + -I$(top_srcdir)/include/drm \ + -I$(top_srcdir)/intel/ \ + -I$(top_srcdir) noinst_PROGRAMS = \ modeprint @@ -9,5 +9,5 @@ noinst_PROGRAMS = \ modeprint_SOURCES = \ modeprint.c modeprint_LDADD = \ - $(top_builddir)/libdrm/libdrm.la \ - $(top_builddir)/libdrm/intel/libdrm_intel.la + $(top_builddir)/libdrm.la \ + $(top_builddir)/intel/libdrm_intel.la diff --git a/tests/modetest/Makefile.am b/tests/modetest/Makefile.am index 860fe064..16f5e995 100644 --- a/tests/modetest/Makefile.am +++ b/tests/modetest/Makefile.am @@ -1,7 +1,7 @@ AM_CFLAGS = \ - -I$(top_srcdir)/shared-core \ - -I$(top_srcdir)/libdrm/intel/ \ - -I$(top_srcdir)/libdrm \ + -I$(top_srcdir)/include/drm \ + -I$(top_srcdir)/intel/ \ + -I$(top_srcdir) \ $(CAIRO_CFLAGS) noinst_PROGRAMS = \ @@ -10,6 +10,6 @@ noinst_PROGRAMS = \ modetest_SOURCES = \ modetest.c modetest_LDADD = \ - $(top_builddir)/libdrm/libdrm.la \ - $(top_builddir)/libdrm/intel/libdrm_intel.la \ + $(top_builddir)/libdrm.la \ + $(top_builddir)/intel/libdrm_intel.la \ $(CAIRO_LIBS) |