mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
346aa683de
We have various sub directories in glib/ and gio/ (eg: inotify, gnulib, pcre, xdgmime, etc.) that build convenience libraries that are then included into libglib and libgio. The files in these directories need to be built with the same visibility policy as the files in the first level directories, so add CFLAGS for them all. This wasn't a problem when the visibility flags were set directly in CFLAGS but then we had to deal with some modules that we built that we explicitly wanted to export symbols from. For now, we can keep things the way they are because it's less hacky and although it's a theoretical hazard to forget these CFLAGS, we rarely add new subdirectories to the build.
25 lines
468 B
Makefile
25 lines
468 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
AM_CPPFLAGS = -DXDG_PREFIX=_gio_xdg
|
|
|
|
noinst_LTLIBRARIES = libxdgmime.la
|
|
|
|
libxdgmime_la_CFLAGS = $(GLIB_HIDDEN_VISIBILITY_CFLAGS)
|
|
libxdgmime_la_SOURCES = \
|
|
xdgmime.c \
|
|
xdgmime.h \
|
|
xdgmimealias.c \
|
|
xdgmimealias.h \
|
|
xdgmimecache.c \
|
|
xdgmimecache.h \
|
|
xdgmimeglob.c \
|
|
xdgmimeglob.h \
|
|
xdgmimeicon.c \
|
|
xdgmimeicon.h \
|
|
xdgmimeint.c \
|
|
xdgmimeint.h \
|
|
xdgmimemagic.c \
|
|
xdgmimemagic.h \
|
|
xdgmimeparent.c \
|
|
xdgmimeparent.h
|