From d6a4c2cbd11e357a9123f6d41f6d40d38e82e7f2 Mon Sep 17 00:00:00 2001 From: Thierry Reding Date: Sat, 1 Dec 2012 10:30:38 +0100 Subject: libdrm: Add NVIDIA Tegra support 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 Signed-off-by: Erik Faye-Lund Signed-off-by: Thierry Reding --- tegra/Makefile.am | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tegra/Makefile.am (limited to 'tegra/Makefile.am') diff --git a/tegra/Makefile.am b/tegra/Makefile.am new file mode 100644 index 00000000..a6474879 --- /dev/null +++ b/tegra/Makefile.am @@ -0,0 +1,23 @@ +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 -- cgit v1.2.3