2015-08-21 17:55:36 -06:00
|
|
|
include Makefile.sources
|
|
|
|
|
|
|
|
AM_CFLAGS = $(filter-out -Wpointer-arith, $(WARN_CFLAGS))
|
|
|
|
|
|
|
|
AM_CFLAGS += \
|
2017-02-04 22:38:00 -07:00
|
|
|
-pthread \
|
2015-08-21 17:55:36 -06:00
|
|
|
-I$(top_srcdir)/include/drm \
|
2016-03-20 04:19:44 -06:00
|
|
|
-I$(top_srcdir)/tests \
|
2015-08-21 17:55:36 -06:00
|
|
|
-I$(top_srcdir)
|
|
|
|
|
|
|
|
if HAVE_INSTALL_TESTS
|
|
|
|
bin_PROGRAMS = \
|
|
|
|
modetest
|
|
|
|
else
|
|
|
|
noinst_PROGRAMS = \
|
|
|
|
modetest
|
|
|
|
endif
|
|
|
|
|
|
|
|
modetest_SOURCES = $(MODETEST_FILES)
|
|
|
|
|
|
|
|
modetest_LDADD = \
|
|
|
|
$(top_builddir)/libdrm.la \
|
2016-03-20 04:19:44 -06:00
|
|
|
$(top_builddir)/tests/util/libutil.la \
|
2017-02-04 22:38:00 -07:00
|
|
|
$(CAIRO_LIBS)
|