mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 09:26:10 +00:00
Commit 711a17a (quick_dump: Move base_display.txt to indivual platforms) renamed base_display.txt to common_display.txt, but didn't update Makefile.am accordingly. Since common_display.txt is now included in the platform files, it is automatically included in $(QUICK_DUMP_EXTRA_DIST) and therefore just the reference to base_display.txt needs removing. Cc: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Thomas Wood <thomas.wood@intel.com>
30 lines
1.0 KiB
Makefile
30 lines
1.0 KiB
Makefile
AM_CPPFLAGS = -I$(top_srcdir)/lib -I$(top_builddir)/lib $(PYTHON_CPPFLAGS) $(DRM_CFLAGS) $(CAIRO_CFLAGS) -I$(top_srcdir)
|
|
|
|
BUILT_SOURCES = chipset_wrap_python.c
|
|
|
|
dist_bin_SCRIPTS = quick_dump.py reg_access.py
|
|
bin_SCRIPTS = chipset.py
|
|
|
|
lib_LTLIBRARIES = I915ChipsetPython.la
|
|
I915ChipsetPython_la_LDFLAGS = -module -avoid-version $(PYTHON_LDFLAGS)
|
|
I915ChipsetPython_la_SOURCES = chipset_wrap_python.c chipset_macro_wrap.c
|
|
I915ChipsetPython_la_LIBADD = \
|
|
$(top_builddir)/lib/libintel_tools.la \
|
|
$(PCIACCESS_LIBS) \
|
|
$(DRM_LIBS) \
|
|
$(CAIRO_LIBS) \
|
|
$(NULL)
|
|
|
|
chipset_wrap_python.c chipset.py: chipset.i
|
|
$(AM_V_GEN)$(SWIG) $(AX_SWIG_PYTHON_OPT) -I/usr/include -I$(top_srcdir)/lib -o $@ $<
|
|
|
|
all-local: I915ChipsetPython.la
|
|
$(LN_S) -f .libs/I915ChipsetPython.so _chipset.so
|
|
|
|
CLEANFILES = chipset_wrap_python.c chipset.py _chipset.so
|
|
EXTRA_DIST = $(QUICK_DUMP_EXTRA_DIST) \
|
|
base_interrupt.txt base_other.txt base_power.txt base_rings.txt \
|
|
quick_dump.py \
|
|
reg_access.py \
|
|
chipset.i chipset.py
|