mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 09:26:10 +00:00
Hooks to allow safe accesses from userspace. Can revert to old behavior by using unsafe access.
27 lines
425 B
Makefile
27 lines
425 B
Makefile
NULL=#
|
|
|
|
AM_CFLAGS = $(WARN_CFLAGS) -I$(srcdir)/..
|
|
libintel_tools_la_SOURCES = \
|
|
intel_batchbuffer.h \
|
|
intel_chipset.h \
|
|
intel_gpu_tools.h \
|
|
intel_mmio.c \
|
|
intel_pci.c \
|
|
intel_reg.h \
|
|
intel_reg_map.c \
|
|
instdone.c \
|
|
instdone.h \
|
|
drmtest.h
|
|
|
|
if HAVE_DRM
|
|
libintel_tools_la_SOURCES += \
|
|
intel_batchbuffer.c \
|
|
intel_drm.c \
|
|
drmtest.c \
|
|
$(NULL)
|
|
AM_CFLAGS += $(DRM_CFLAGS)
|
|
endif
|
|
|
|
noinst_LTLIBRARIES = libintel_tools.la
|
|
|