diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-03-22 16:07:37 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-03-22 16:07:37 +0000 |
commit | d78b22fe007467b1e5129e6e7f0f5752fac85efe (patch) | |
tree | f6cf81e1fd1262bfc55c3e6611948eefe59e5898 /serial/Makefile.am | |
parent | 24eaef5b7c1bdbaa1d956d7714184ab0a8059185 (diff) |
Convert serial service to a plugin
Diffstat (limited to 'serial/Makefile.am')
-rw-r--r-- | serial/Makefile.am | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/serial/Makefile.am b/serial/Makefile.am index 46039bea..705ccef4 100644 --- a/serial/Makefile.am +++ b/serial/Makefile.am @@ -1,27 +1,23 @@ if SERIALSERVICE -if CONFIGFILES -confdir = $(sysconfdir)/bluetooth +plugindir = $(libdir)/bluetooth/plugins -conf_DATA = serial.service -endif - -servicedir = $(libdir)/bluetooth +plugin_LTLIBRARIES = libserial.la -service_PROGRAMS = bluetoothd-service-serial - -bluetoothd_service_serial_SOURCES = main.c \ +libserial_la_SOURCES = main.c \ manager.h manager.c port.h port.c \ storage.h storage.c LDADD = $(top_builddir)/common/libhelper.a \ - @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ + @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@ endif +AM_LDFLAGS = -module -avoid-version -export-symbols-regex bluetooth_plugin_desc + AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ -INCLUDES = -I$(top_srcdir)/common +INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid -EXTRA_DIST = serial.service serial-api.txt test-serial +EXTRA_DIST = serial-api.txt test-serial MAINTAINERCLEANFILES = Makefile.in |