mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-24 16:26:13 +00:00
The goal of this tool is to be usable as a test for whether something (suspend/resume, GPU reset, bugs, whatever) may have lost various required hardware setup specified in the docs. Reviewed-By: Eugeni Dodonov <eugeni.dodonov@intel.com>
44 lines
815 B
Makefile
44 lines
815 B
Makefile
bin_PROGRAMS = \
|
|
intel_disable_clock_gating \
|
|
intel_audio_dump \
|
|
intel_backlight \
|
|
intel_bios_dumper \
|
|
intel_bios_reader \
|
|
intel_error_decode \
|
|
intel_gpu_top \
|
|
intel_gpu_time \
|
|
intel_gtt \
|
|
intel_stepping \
|
|
intel_reg_checker \
|
|
intel_reg_dumper \
|
|
intel_reg_snapshot \
|
|
intel_reg_write \
|
|
intel_reg_read \
|
|
forcewaked \
|
|
$(NULL)
|
|
|
|
noinst_PROGRAMS = \
|
|
intel_dump_decode \
|
|
intel_lid \
|
|
$(NULL)
|
|
|
|
intel_dump_decode_SOURCES = \
|
|
intel_dump_decode.c \
|
|
intel_decode.c \
|
|
intel_decode.h
|
|
|
|
intel_error_decode_SOURCES = \
|
|
intel_error_decode.c \
|
|
intel_decode.c \
|
|
intel_decode.h
|
|
|
|
intel_bios_reader_SOURCES = \
|
|
intel_bios_reader.c \
|
|
intel_bios.h
|
|
|
|
LDADD = ../lib/libintel_tools.la $(DRM_LIBS) $(PCIACCESS_LIBS)
|
|
|
|
AM_CFLAGS = $(DRM_CFLAGS) $(PCIACCESS_CFLAGS) $(WARN_CFLAGS) \
|
|
-I$(srcdir)/.. \
|
|
-I$(srcdir)/../lib
|