blob: a2a521dc78ebeb874864a440bad383456c3ee8c9 (
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
25
26
27
28
29
30
|
plugindir = $(libdir)/bluetooth/plugins
plugin_LTLIBRARIES = libstorage.la
libstorage_la_SOURCES = storage.c
noinst_LTLIBRARIES = libecho.la
libecho_la_SOURCES = echo.c
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
MAINTAINERCLEANFILES = Makefile.in
all-local:
@$(LN_S) -f $(top_srcdir)/input/.libs/libinput.so
@$(LN_S) -f $(top_srcdir)/audio/.libs/libaudio.so
@$(LN_S) -f $(top_srcdir)/serial/.libs/libserial.so
@$(LN_S) -f $(top_srcdir)/network/.libs/libnetwork.so
clean-local:
@rm -f libnetwork.so
@rm -f libserial.so
@rm -f libaudio.so
@rm -f libinput.so
|