8692b1cb72
When enabled, this will compile all libraries/binaries with the necessary gcc and ld flags to enable code coverage support using gcov.
28 lines
801 B
Makefile
28 lines
801 B
Makefile
module_LTLIBRARIES = module-spamassassin.la
|
|
|
|
module_spamassassin_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
-I$(top_srcdir) \
|
|
-DG_LOG_DOMAIN=\"evolution-spamassassin\" \
|
|
$(EVOLUTION_DATA_SERVER_CFLAGS) \
|
|
$(GNOME_PLATFORM_CFLAGS) \
|
|
$(GTKHTML_CFLAGS) \
|
|
$(CODE_COVERAGE_CFLAGS)
|
|
|
|
module_spamassassin_la_SOURCES = \
|
|
evolution-spamassassin.c
|
|
|
|
module_spamassassin_la_LIBADD = \
|
|
$(top_builddir)/e-util/libevolution-util.la \
|
|
$(top_builddir)/mail/libevolution-mail.la \
|
|
$(top_builddir)/shell/libevolution-shell.la \
|
|
$(top_builddir)/libemail-engine/libemail-engine.la \
|
|
$(EVOLUTION_DATA_SERVER_LIBS) \
|
|
$(GNOME_PLATFORM_LIBS) \
|
|
$(GTKHTML_LIBS)
|
|
|
|
module_spamassassin_la_LDFLAGS = \
|
|
-module -avoid-version $(NO_UNDEFINED) $(CODE_COVERAGE_LDFLAGS)
|
|
|
|
-include $(top_srcdir)/git.mk
|