mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 17:36:11 +00:00
Automake seems to not like variable assignments indented with tabs. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Fixes: 9e5478dc4345 ("lib: Only compile igt_vc4 is we have it") Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
27 lines
607 B
Makefile
27 lines
607 B
Makefile
IGT_LIB_PATH := $(builddir)
|
|
GPU_TOOLS_PATH := $(top_srcdir)
|
|
|
|
SUBDIRS = . tests
|
|
|
|
include Makefile.sources
|
|
|
|
noinst_LTLIBRARIES = libintel_tools.la
|
|
noinst_HEADERS = check-ndebug.h
|
|
|
|
if HAVE_VC4
|
|
libintel_tools_la_SOURCES += \
|
|
igt_vc4.c \
|
|
igt_vc4.h
|
|
endif
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)
|
|
AM_CFLAGS = $(DRM_CFLAGS) $(CWARNFLAGS) $(LIBUNWIND_CFLAGS) $(DEBUG_CFLAGS) \
|
|
-DIGT_SRCDIR=\""$(abs_top_srcdir)/tests"\" \
|
|
-DIGT_DATADIR=\""$(pkgdatadir)"\" \
|
|
-DIGT_LOG_DOMAIN=\""$(subst _,-,$*)"\" \
|
|
-pthread
|
|
|
|
LDADD = $(CAIRO_LIBS) $(LIBUNWIND_LIBS) -lm
|
|
AM_CFLAGS += $(CAIRO_CFLAGS)
|
|
|