mesa-drm/tests/proptest/Makefile.am
Daniel Kurtz 292b5100e5 proptest: install it with --enable-install-test-programs
--enable-install-test-programs allows tests to be installed in $bindir.
This is disabled by default, but very useful when cross compiling.

Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
2015-03-20 17:18:01 +00:00

17 lines
250 B
Makefile

AM_CFLAGS = \
$(WARN_CFLAGS)\
-I$(top_srcdir)/include/drm \
-I$(top_srcdir)
if HAVE_INSTALL_TESTS
bin_PROGRAMS = \
proptest
else
noinst_PROGRAMS = \
proptest
endif
proptest_SOURCES = \
proptest.c
proptest_LDADD = \
$(top_builddir)/libdrm.la