mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-06-03 19:58:22 +02:00
Add the libdrm_tegra helper library to encapsulate Tegra-specific interfaces to the DRM. Furthermore, Tegra is added to the list of supported chips in the modetest and vbltest programs. Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
23 lines
542 B
Makefile
23 lines
542 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/include/drm
|
|
|
|
AM_CFLAGS = \
|
|
@PTHREADSTUBS_CFLAGS@ \
|
|
$(VISIBILITY_CFLAGS) \
|
|
$(WARN_CFLAGS)
|
|
|
|
libdrm_tegra_ladir = $(libdir)
|
|
libdrm_tegra_la_LTLIBRARIES = libdrm_tegra.la
|
|
libdrm_tegra_la_LDFLAGS = -version-number 0:0:0 -no-undefined
|
|
libdrm_tegra_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@
|
|
|
|
libdrm_tegra_la_SOURCES = \
|
|
private.h \
|
|
tegra.c
|
|
|
|
libdrm_tegraincludedir = ${includedir}/libdrm
|
|
libdrm_tegrainclude_HEADERS = tegra.h
|
|
|
|
pkgconfigdir = @pkgconfigdir@
|
|
pkgconfig_DATA = libdrm_tegra.pc
|