mirror of
https://github.com/brl/mutter.git
synced 2024-11-13 01:36:10 -05:00
05b2e6bc1c
* clutter/cogl/Makefile.am: * clutter/cogl/gl/Makefile.am: * clutter/cogl/gles/Makefile.am: * clutter/json/Makefile.am: * clutter/pango/Makefile.am: Fix the visibility of all the symbols, for the main library and the statically linked ones.
26 lines
713 B
Makefile
26 lines
713 B
Makefile
source_c = pangoclutter-font.c \
|
|
pangoclutter-fontmap.c \
|
|
pangoclutter-render.c
|
|
|
|
source_h = pangoclutter.h
|
|
|
|
source_h_priv = pangoclutter-private.h
|
|
|
|
noinst_LTLIBRARIES = libpangoclutter.la
|
|
|
|
libpangoclutter_la_SOURCES = $(source_c) \
|
|
$(source_h) \
|
|
$(source_h_priv)
|
|
|
|
INCLUDES = \
|
|
@GCC_FLAGS@ @CLUTTER_CFLAGS@ \
|
|
$(CLUTTER_DEBUG_CFLAGS) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/clutter/cogl \
|
|
-I$(top_srcdir)/clutter/cogl/@CLUTTER_COGL@
|
|
|
|
LDADD = -export-symbols-regex "^pango.*"
|
|
|
|
pangoclutterheadersdir = $(includedir)/clutter-@CLUTTER_MAJORMINOR@/clutter
|
|
pangoclutterheaders_HEADERS = $(source_h)
|