blob: 52a46a74634a92a66f78a35a03bdb6f9a36e3e67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
if INPUTSERVICE
plugindir = $(libdir)/bluetooth/plugins
plugin_LTLIBRARIES = libinput.la
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
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 -I$(top_srcdir)/hcid
EXTRA_DIST = input-api.txt test-input
MAINTAINERCLEANFILES = Makefile.in
|