diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-03-22 15:37:36 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-03-22 15:37:36 +0000 |
commit | 29efa57d5a27b0cf5997381053be9cc48b2c2e80 (patch) | |
tree | 1eb1b9851e382f600a576e85c19e9d69cf3a730a /input/Makefile.am | |
parent | 957ead88e8a90526631f1a767ba1006bc03b8084 (diff) |
Convert input service into a plugin
Diffstat (limited to 'input/Makefile.am')
-rw-r--r-- | input/Makefile.am | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/input/Makefile.am b/input/Makefile.am index cb56f812..52a46a74 100644 --- a/input/Makefile.am +++ b/input/Makefile.am @@ -1,16 +1,10 @@ if INPUTSERVICE -if CONFIGFILES -confdir = $(sysconfdir)/bluetooth +plugindir = $(libdir)/bluetooth/plugins -conf_DATA = input.service -endif - -servicedir = $(libdir)/bluetooth +plugin_LTLIBRARIES = libinput.la -service_PROGRAMS = bluetoothd-service-input - -bluetoothd_service_input_SOURCES = main.c \ +libinput_la_SOURCES = main.c \ manager.h manager.c \ server.h server.c device.h device.c storage.h storage.c \ fakehid.c fakehid.h @@ -19,10 +13,12 @@ LDADD = $(top_builddir)/common/libhelper.a \ @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 = input.service input-api.txt test-input +EXTRA_DIST = input-api.txt test-input MAINTAINERCLEANFILES = Makefile.in |