mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-06 07:08:03 +02:00
--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>
17 lines
250 B
Makefile
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
|