mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-30 07:34:27 +08:00
25 lines
590 B
Makefile
25 lines
590 B
Makefile
|
|
if SERIALPLUGIN
|
|
plugindir = $(libdir)/bluetooth/plugins
|
|
|
|
plugin_LTLIBRARIES = serial.la
|
|
|
|
serial_la_SOURCES = main.c \
|
|
manager.h manager.c port.h port.c \
|
|
storage.h storage.c proxy.h proxy.c
|
|
|
|
LDADD = $(top_builddir)/common/libhelper.a \
|
|
@GDBUS_LIBS@ @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@
|
|
endif
|
|
|
|
AM_LDFLAGS = -module -avoid-version -no-undefined \
|
|
-export-symbols-regex bluetooth_plugin_desc
|
|
|
|
AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@
|
|
|
|
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/src
|
|
|
|
EXTRA_DIST = serial-api.txt
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|