blob: 7d7abb9d6dd39f1f5875e30e63034dee52bd6950 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
NULL =
module_flags = -export_dynamic -avoid-version -module -no-undefined -export-symbols-regex '^g_io_module_(load|unload)'
if USE_GCONF
giomodules_LTLIBRARIES = libgiogconf.la
endif
libgiogconf_la_SOURCES = \
gapplookupgconf.c gapplookupgconf.h \
gconf-module.c \
$(NULL)
libgiogconf_la_CFLAGS = \
-DG_LOG_DOMAIN=\"GVFS-GConf\" \
-I$(top_srcdir)/common \
$(GLIB_CFLAGS) \
$(GCONF_CFLAGS) \
-DGIO_MODULE_DIR=\"$(GIO_MODULE_DIR)\" \
-DGVFS_LOCALEDIR=\""$(localedir)"\" \
-DG_DISABLE_DEPRECATED \
$(NULL)
libgiogconf_la_LDFLAGS = \
$(module_flags) \
$(NULL)
libgiogconf_la_LIBADD = \
$(GLIB_LIBS) \
$(GCONF_LIBS) \
$(NULL)
|