mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-21 00:38:21 +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>
25 lines
442 B
Makefile
25 lines
442 B
Makefile
include Makefile.sources
|
|
|
|
AM_CFLAGS = $(filter-out -Wpointer-arith, $(WARN_CFLAGS))
|
|
|
|
AM_CFLAGS += \
|
|
-fvisibility=hidden \
|
|
-pthread \
|
|
-I$(top_srcdir)/include/drm \
|
|
-I$(top_srcdir)/tests \
|
|
-I$(top_srcdir)
|
|
|
|
if HAVE_INSTALL_TESTS
|
|
bin_PROGRAMS = \
|
|
modetest
|
|
else
|
|
noinst_PROGRAMS = \
|
|
modetest
|
|
endif
|
|
|
|
modetest_SOURCES = $(MODETEST_FILES)
|
|
|
|
modetest_LDADD = \
|
|
$(top_builddir)/libdrm.la \
|
|
$(top_builddir)/tests/util/libutil.la \
|
|
$(CAIRO_LIBS)
|