mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-01-07 00:50:20 +01:00
With earlier commits we've annotated the private symbols, thus we no longer require the -fvisibility=hidden CFLAGS. Cc: Ben Skeggs <bskeggs@redhat.com> Cc: Damien Lespiau <damien.lespiau@intel.com> Cc: Maarten Lankhorst <maarten.lankhorst@canonical.com> Cc: Michel Dänzer <michel.daenzer@amd.com> Cc: Rob Clark <robdclark@gmail.com> Cc: Thierry Reding <treding@nvidia.com> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
24 lines
632 B
Makefile
24 lines
632 B
Makefile
AM_CFLAGS = \
|
|
$(WARN_CFLAGS) \
|
|
-I$(top_srcdir) \
|
|
$(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
|
|
|
|
TESTS = omap-symbol-check
|
|
EXTRA_DIST = $(TESTS)
|