EShellSettings predates GSettings and is no longer necessary. GSettings allows binding GObject properties to GSettings keys, with optional mapping functions. That fulfills the purpose of EShellSettings.
60 lines
1.8 KiB
Makefile
60 lines
1.8 KiB
Makefile
module_LTLIBRARIES = module-mail.la
|
|
|
|
module_mail_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
-I$(top_srcdir) \
|
|
-DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \
|
|
-DEVOLUTION_UIDIR=\""$(uidir)"\" \
|
|
-DEVOLUTION_PRIVDATADIR=\""$(privdatadir)"\" \
|
|
-DG_LOG_DOMAIN=\"evolution-module-mail\" \
|
|
$(EVOLUTION_DATA_SERVER_CFLAGS) \
|
|
$(GNOME_PLATFORM_CFLAGS) \
|
|
$(GTKHTML_CFLAGS)
|
|
|
|
module_mail_la_SOURCES = \
|
|
evolution-module-mail.c \
|
|
e-mail-attachment-handler.c \
|
|
e-mail-attachment-handler.h \
|
|
e-mail-config-hook.c \
|
|
e-mail-config-hook.h \
|
|
e-mail-event-hook.c \
|
|
e-mail-event-hook.h \
|
|
e-mail-shell-backend.c \
|
|
e-mail-shell-backend.h \
|
|
e-mail-shell-content.c \
|
|
e-mail-shell-content.h \
|
|
e-mail-shell-sidebar.c \
|
|
e-mail-shell-sidebar.h \
|
|
e-mail-shell-view.c \
|
|
e-mail-shell-view.h \
|
|
e-mail-shell-view-actions.c \
|
|
e-mail-shell-view-actions.h \
|
|
e-mail-shell-view-private.c \
|
|
e-mail-shell-view-private.h \
|
|
em-account-prefs.c \
|
|
em-account-prefs.h \
|
|
em-composer-prefs.c \
|
|
em-composer-prefs.h \
|
|
em-mailer-prefs.c \
|
|
em-mailer-prefs.h \
|
|
em-network-prefs.c \
|
|
em-network-prefs.h
|
|
|
|
module_mail_la_LIBADD = \
|
|
$(top_builddir)/libemail-engine/libemail-engine.la \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/em-format/libemformat.la \
|
|
$(top_builddir)/shell/libeshell.la \
|
|
$(top_builddir)/composer/libcomposer.la \
|
|
$(top_builddir)/mail/libevolution-mail.la \
|
|
$(top_builddir)/mail/importers/libevolution-mail-importers.la \
|
|
$(libevolution_mail_settings_la) \
|
|
$(EVOLUTION_DATA_SERVER_LIBS) \
|
|
$(GNOME_PLATFORM_LIBS) \
|
|
$(GTKHTML_LIBS)
|
|
|
|
module_mail_la_LDFLAGS = \
|
|
-avoid-version -module $(NO_UNDEFINED)
|
|
|
|
-include $(top_srcdir)/git.mk
|