- Require all EPlugin and EPluginHook subtypes be registered before loading plugins. This drastically simplifies the EPlugin/EPluginHook negotiation. - Turn most EPluginHook subtypes into GTypeModules and register their types from an e_module_load() function (does not include shell hooks). - Convert EPluginLib and the Mono and Python bindings to GTypeModules and register their types from an e_module_load() function, and kill EPluginTypeHook.
23 lines
563 B
Makefile
23 lines
563 B
Makefile
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"evolution-plugin-mono\" \
|
|
-I$(top_srcdir) \
|
|
$(E_UTIL_CFLAGS) \
|
|
$(MONO_CFLAGS)
|
|
|
|
module_LTLIBRARIES = libevolution-module-plugin-mono.la
|
|
|
|
libevolution_module_plugin_mono_la_SOURCES = \
|
|
evolution-module-plugin-mono.c \
|
|
e-plugin-mono.c \
|
|
e-plugin-mono.h
|
|
|
|
libevolution_module_plugin_mono_la_LIBADD = \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(E_UTIL_LIBS) \
|
|
$(MONO_LIBS)
|
|
|
|
libevolution_module_plugin_mono_la_LDFLAGS = \
|
|
-module -avoid-version $(NO_UNDEFINED)
|
|
|
|
-include $(top_srcdir)/git.mk
|