• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1include Makefile.sources
2
3AM_CFLAGS = $(filter-out -Wpointer-arith, $(WARN_CFLAGS))
4
5AM_CFLAGS += \
6	-I$(top_srcdir)/include/drm \
7	-I$(top_srcdir)/tests \
8	-I$(top_srcdir)
9
10if HAVE_INSTALL_TESTS
11bin_PROGRAMS = \
12	modetest
13else
14noinst_PROGRAMS = \
15	modetest
16endif
17
18modetest_SOURCES = $(MODETEST_FILES)
19
20modetest_LDADD = \
21	$(top_builddir)/libdrm.la \
22	$(top_builddir)/tests/util/libutil.la \
23	$(CAIRO_LIBS) \
24	-lpthread
25
26EXTRA_DIST = Android.mk
27