mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-09 00:46:17 +00:00
The igt_command_line.sh script was moved by commit 685e577 (Move library selftests to lib/tests), but the location of the tests and the test lists was not updated. Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Thomas Wood <thomas.wood@intel.com>
20 lines
492 B
Makefile
20 lines
492 B
Makefile
include Makefile.sources
|
|
|
|
AM_TESTS_ENVIRONMENT = \
|
|
top_builddir=$(top_builddir) \
|
|
top_srcdir=$(top_srcdir)
|
|
|
|
EXTRA_DIST = $(check_SCRIPTS)
|
|
|
|
AM_CFLAGS = $(DRM_CFLAGS) $(CWARNFLAGS) \
|
|
-I$(srcdir)/../.. \
|
|
-I$(srcdir)/.. \
|
|
-include "$(srcdir)/../../lib/check-ndebug.h" \
|
|
-DIGT_DATADIR=\""$(abs_srcdir)"\" \
|
|
$(NULL)
|
|
|
|
LDADD = ../libintel_tools.la $(PCIACCESS_LIBS) $(DRM_LIBS)
|
|
|
|
LDADD += $(CAIRO_LIBS) $(LIBUDEV_LIBS) $(GLIB_LIBS)
|
|
AM_CFLAGS += $(CAIRO_CFLAGS) $(LIBUDEV_CFLAGS) $(GLIB_CFLAGS)
|