mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-01-15 15:30:30 +01:00
This adds libdrm_omap helper layer (as used by xf86-video-omap, omapdrmtest, etc). Signed-off-by: Rob Clark <rob@ti.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> [danvet: pushed for Rob, he doesn't yet have commit access.] Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
22 lines
607 B
Makefile
22 lines
607 B
Makefile
AM_CFLAGS = \
|
|
$(WARN_CFLAGS) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/omap \
|
|
$(PTHREADSTUBS_CFLAGS) \
|
|
-I$(top_srcdir)/include/drm
|
|
|
|
libdrm_omap_la_LTLIBRARIES = libdrm_omap.la
|
|
libdrm_omap_ladir = $(libdir)
|
|
libdrm_omap_la_LDFLAGS = -version-number 1:0:0 -no-undefined
|
|
libdrm_omap_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@
|
|
|
|
libdrm_omap_la_SOURCES = omap_drm.c
|
|
|
|
libdrm_omapcommonincludedir = ${includedir}/omap
|
|
libdrm_omapcommoninclude_HEADERS = omap_drm.h
|
|
|
|
libdrm_omapincludedir = ${includedir}/libdrm
|
|
libdrm_omapinclude_HEADERS = omap_drmif.h
|
|
|
|
pkgconfigdir = @pkgconfigdir@
|
|
pkgconfig_DATA = libdrm_omap.pc
|