Files
evolution/modules/Makefile.am
Matthew Barnes cd7fadfcdb Convert NetworkManager integration to an EShell extension.
This demonstrates how to extend EShell without having to modify and
recompile e-shell.c.  If NetworkManager integration is enabled, the
extension is loaded automatically when the EShell is created.

The same pattern can be applied to integrate other network monitoring
software like ConnMan or Microsoft's Wireless Zero Configuration.
2010-04-07 13:09:42 -04:00

23 lines
315 B
Makefile

if ENABLE_MONO
MONO_DIR = plugin-mono
endif
if ENABLE_PYTHON
PYTHON_DIR = plugin-python
endif
if ENABLE_NETWORK_MANAGER
NETWORK_MANAGER_DIR = network-manager
endif
SUBDIRS = \
addressbook \
calendar \
mail \
plugin-lib \
$(MONO_DIR) \
$(PYTHON_DIR) \
$(NETWORK_MANAGER_DIR)
-include $(top_srcdir)/git.mk