• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2if INPUTPLUGIN
3plugindir = $(libdir)/bluetooth/plugins
4
5plugin_LTLIBRARIES = input.la
6
7input_la_SOURCES = main.c manager.h manager.c \
8			server.h server.c device.h device.c \
9						fakehid.c fakehid.h
10
11LDADD = $(top_builddir)/common/libhelper.a \
12		@GDBUS_LIBS@ @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@
13endif
14
15AM_LDFLAGS = -module -avoid-version -no-undefined
16
17AM_CFLAGS = -fvisibility=hidden \
18		@BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@
19
20INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/src
21
22EXTRA_DIST = input.conf sixpair.c
23
24MAINTAINERCLEANFILES = Makefile.in
25