diff options
author | Thierry Reding | 2012-12-01 03:30:38 -0600 |
---|---|---|
committer | Thierry Reding | 2014-11-27 10:05:35 -0600 |
commit | d6a4c2cbd11e357a9123f6d41f6d40d38e82e7f2 (patch) | |
tree | 22fb43f3d381c6d8dd953890a2b2ab533cee642d /tegra/Makefile.am | |
parent | fb4177046de19730a784c3c16e4b73aab0ec6e41 (diff) | |
download | external-libdrm-d6a4c2cbd11e357a9123f6d41f6d40d38e82e7f2.tar.gz external-libdrm-d6a4c2cbd11e357a9123f6d41f6d40d38e82e7f2.tar.xz external-libdrm-d6a4c2cbd11e357a9123f6d41f6d40d38e82e7f2.zip |
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 <thierry.reding@avionic-design.de>
Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'tegra/Makefile.am')
-rw-r--r-- | tegra/Makefile.am | 23 |
1 files changed, 23 insertions, 0 deletions
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 @@ | |||
1 | AM_CPPFLAGS = \ | ||
2 | -I$(top_srcdir) \ | ||
3 | -I$(top_srcdir)/include/drm | ||
4 | |||
5 | AM_CFLAGS = \ | ||
6 | @PTHREADSTUBS_CFLAGS@ \ | ||
7 | $(VISIBILITY_CFLAGS) \ | ||
8 | $(WARN_CFLAGS) | ||
9 | |||
10 | libdrm_tegra_ladir = $(libdir) | ||
11 | libdrm_tegra_la_LTLIBRARIES = libdrm_tegra.la | ||
12 | libdrm_tegra_la_LDFLAGS = -version-number 0:0:0 -no-undefined | ||
13 | libdrm_tegra_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@ | ||
14 | |||
15 | libdrm_tegra_la_SOURCES = \ | ||
16 | private.h \ | ||
17 | tegra.c | ||
18 | |||
19 | libdrm_tegraincludedir = ${includedir}/libdrm | ||
20 | libdrm_tegrainclude_HEADERS = tegra.h | ||
21 | |||
22 | pkgconfigdir = @pkgconfigdir@ | ||
23 | pkgconfig_DATA = libdrm_tegra.pc | ||