Files
evolution/modules/text-highlight/Makefile.am
Milan Crha 8692b1cb72 Add an --enable-code-coverage configure option to enable gcov support
When enabled, this will compile all libraries/binaries with the necessary
gcc and ld flags to enable code coverage support using gcov.
2014-03-25 12:04:58 +01:00

37 lines
1.2 KiB
Makefile

module_LTLIBRARIES = module-text-highlight.la
module_text_highlight_la_CPPFLAGS = \
$(AM_CPPFLAGS) \
-I$(top_srcdir) \
-DEVOLUTION_PRIVDATADIR=\""$(privdatadir)"\" \
-DG_LOG_DOMAIN=\"evolution-module-text-highlight\" \
$(EVOLUTION_DATA_SERVER_CFLAGS) \
$(GNOME_PLATFORM_CFLAGS) \
$(GTKHTML_CFLAGS) \
$(CODE_COVERAGE_CFLAGS)
module_text_highlight_la_SOURCES = \
e-mail-display-popup-text-highlight.c \
e-mail-display-popup-text-highlight.h \
e-mail-formatter-text-highlight.c \
e-mail-formatter-text-highlight.h \
e-mail-parser-text-highlight.c \
e-mail-parser-text-highlight.h \
evolution-module-text-highlight.c \
languages.c \
languages.h
module_text_highlight_la_LIBADD = \
$(top_builddir)/e-util/libevolution-util.la \
$(top_builddir)/mail/libevolution-mail.la \
$(top_builddir)/em-format/libevolution-mail-formatter.la \
$(top_builddir)/shell/libevolution-shell.la \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(GNOME_PLATFORM_LIBS) \
$(GTKHTML_LIBS)
module_text_highlight_la_LDFLAGS = \
-avoid-version -module $(NO_UNDEFINED) $(CODE_COVERAGE_LDFLAGS)
-include $(top_srcdir)/git.mk