From 694f01921120bb2584b09b4ba502703cd8afd3f6 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 2 Sep 2008 19:17:55 -0300 Subject: Make methods related to external services into service plugin. --- plugins/Makefile.am | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'plugins/Makefile.am') diff --git a/plugins/Makefile.am b/plugins/Makefile.am index d88d9db6..b07bad4f 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -7,12 +7,17 @@ else netlink_plugins = endif -plugin_LTLIBRARIES = $(netlink_plugins) +if SERVICEPLUGIN +service_plugins = service.la +else +service_plugins = +endif + +plugin_LTLIBRARIES = $(netlink_plugins) $(service_plugins) noinst_LTLIBRARIES = echo.la storage.la echo_la_SOURCES = echo.c - storage_la_SOURCES = storage.c if NETLINK @@ -21,6 +26,10 @@ netlink_la_SOURCES = netlink.c netlink_la_LIBADD = @NETLINK_LIBS@ endif +if SERVICEPLUGIN +service_la_SOURCES = service.c +endif + AM_LDFLAGS = -module -avoid-version -no-undefined \ -export-symbols-regex bluetooth_plugin_desc -- cgit