mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-18 10:48:11 +02:00
Now that symbols that should be exported are annotated accordingly, make all the rest hidden by default. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Acked-by: Eric Engestrom <eric.engestrom@intel.com>
20 lines
334 B
Makefile
20 lines
334 B
Makefile
AM_CFLAGS = \
|
|
$(WARN_CFLAGS)\
|
|
-fvisibility=hidden \
|
|
-I$(top_srcdir)/include/drm \
|
|
-I$(top_srcdir)/tests \
|
|
-I$(top_srcdir)
|
|
|
|
if HAVE_INSTALL_TESTS
|
|
bin_PROGRAMS = \
|
|
vbltest
|
|
else
|
|
noinst_PROGRAMS = \
|
|
vbltest
|
|
endif
|
|
|
|
vbltest_SOURCES = \
|
|
vbltest.c
|
|
vbltest_LDADD = \
|
|
$(top_builddir)/libdrm.la \
|
|
$(top_builddir)/tests/util/libutil.la
|