Files
evolution/modules/settings/Makefile.am
Tomas Popela 37393c0da9 Propagate settings from Prefences to the EHTMLEditorView
Namely "Use the same fonts as other applications", "Standard Font",
"Fixed Width Font", "Highlight quotations with color", "Automatically
insert emoticon images" and "Check spelling while I type". Also remove
unneded properties from EWebView.
2014-07-29 14:03:22 +02:00

73 lines
2.0 KiB
Makefile

NULL =
module_LTLIBRARIES = module-settings.la
module_settings_la_CPPFLAGS = \
$(AM_CPPFLAGS) \
-I$(top_srcdir) \
-DG_LOG_DOMAIN=\"evolution-module-settings\" \
$(EVOLUTION_DATA_SERVER_CFLAGS) \
$(GNOME_PLATFORM_CFLAGS) \
$(CODE_COVERAGE_CFLAGS) \
$(NULL)
module_settings_la_SOURCES = \
evolution-module-settings.c \
e-settings-cal-model.c \
e-settings-cal-model.h \
e-settings-calendar-item.c \
e-settings-calendar-item.h \
e-settings-calendar-view.c \
e-settings-calendar-view.h \
e-settings-client-cache.c \
e-settings-client-cache.h \
e-settings-comp-editor.c \
e-settings-comp-editor.h \
e-settings-date-edit.c \
e-settings-date-edit.h \
e-settings-deprecated.c \
e-settings-deprecated.h \
e-settings-html-editor-view.c \
e-settings-html-editor-view.h \
e-settings-mail-browser.c \
e-settings-mail-browser.h \
e-settings-mail-formatter.c \
e-settings-mail-formatter.h \
e-settings-mail-part-headers.c \
e-settings-mail-part-headers.h \
e-settings-mail-reader.c \
e-settings-mail-reader.h \
e-settings-mail-session.c \
e-settings-mail-session.h \
e-settings-meeting-store.c \
e-settings-meeting-store.h \
e-settings-meeting-time-selector.c \
e-settings-meeting-time-selector.h \
e-settings-message-list.c \
e-settings-message-list.h \
e-settings-name-selector-entry.c \
e-settings-name-selector-entry.h \
e-settings-spell-checker.c \
e-settings-spell-checker.h \
e-settings-spell-entry.c \
e-settings-spell-entry.h \
e-settings-weekday-chooser.c \
e-settings-weekday-chooser.h \
$(NULL)
module_settings_la_LIBADD = \
$(top_builddir)/libemail-engine/libemail-engine.la \
$(top_builddir)/e-util/libevolution-util.la \
$(top_builddir)/em-format/libevolution-mail-formatter.la \
$(top_builddir)/shell/libevolution-shell.la \
$(top_builddir)/mail/libevolution-mail.la \
$(top_builddir)/calendar/gui/libevolution-calendar.la \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(GNOME_PLATFORM_LIBS) \
$(NULL)
module_settings_la_LDFLAGS = \
-avoid-version -module $(NO_UNDEFINED) $(CODE_COVERAGE_LDFLAGS)
-include $(top_srcdir)/git.mk