ntel-gpu-tools/lib/Makefile.am
Ben Widawsky abd7038e5a intel-gpu-tools/range handling: register range handling
Hooks to allow safe accesses from userspace. Can revert to old behavior
by using unsafe access.
2011-07-28 13:48:51 -07:00

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