Files
evolution/plugins/dbx-import/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

43 lines
1.1 KiB
Makefile

if OS_WIN32
NO_UNDEFINED_REQUIRED_LIBS = \
$(top_builddir)/mail/libevolution-mail.la \
$(top_builddir)/e-util/libevolution-util.la
endif
@EVO_PLUGIN_RULE@
plugin_DATA = org-gnome-dbx-import.eplug
plugin_LTLIBRARIES = liborg-gnome-dbx-import.la
liborg_gnome_dbx_import_la_CPPFLAGS = \
$(AM_CPPFLAGS) \
-I$(top_srcdir) \
-I$(top_builddir) \
$(EVOLUTION_DATA_SERVER_CFLAGS) \
$(GNOME_PLATFORM_CFLAGS) \
$(GTKHTML_CFLAGS) \
$(CODE_COVERAGE_CFLAGS)
liborg_gnome_dbx_import_la_SOURCES = dbx-importer.c
liborg_gnome_dbx_import_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) $(CODE_COVERAGE_LDFLAGS)
liborg_gnome_dbx_import_la_LIBADD = \
$(top_builddir)/mail/libevolution-mail.la \
$(top_builddir)/e-util/libevolution-util.la \
$(top_builddir)/shell/libevolution-shell.la \
$(top_builddir)/libemail-engine/libemail-engine.la \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(GNOME_PLATFORM_LIBS) \
$(GTKHTML_LIBS)
EXTRA_DIST = org-gnome-dbx-import.eplug.xml
BUILT_SOURCES = org-gnome-dbx-import.eplug
CLEANFILES = $(BUILT_SOURCES)
-include $(top_srcdir)/git.mk