mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-07-02 20:26:16 +00:00
This is a handy tool to just check state of one register, which might not bother to be included in intel_reg_dumper tool. And also take in Ben's original full range register dump with '-f' option. Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
27 lines
510 B
Makefile
27 lines
510 B
Makefile
bin_PROGRAMS = \
|
|
intel_audio_dump \
|
|
intel_decode \
|
|
intel_gpu_dump \
|
|
intel_gpu_top \
|
|
intel_gpu_time \
|
|
intel_stepping \
|
|
intel_reg_dumper \
|
|
intel_reg_write \
|
|
intel_reg_read
|
|
|
|
intel_gpu_dump_SOURCES = \
|
|
intel_gpu_dump.c \
|
|
intel_decode.c \
|
|
intel_decode.h
|
|
|
|
intel_decode_SOURCES = \
|
|
intel_decode_file.c \
|
|
intel_decode.c \
|
|
intel_decode.h
|
|
|
|
LDADD = ../lib/libintel_tools.la $(DRM_LIBS) $(PCIACCESS_LIBS)
|
|
|
|
AM_CFLAGS = $(DRM_CFLAGS) $(PCIACCESS_CFLAGS) $(WARN_CFLAGS) \
|
|
-I$(srcdir)/.. \
|
|
-I$(srcdir)/../lib
|