mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-17 17:24:32 +08:00
28 lines
591 B
Makefile
28 lines
591 B
Makefile
|
|
if SERIALSERVICE
|
|
if CONFIGFILES
|
|
confdir = $(sysconfdir)/bluetooth
|
|
|
|
conf_DATA = serial.service
|
|
endif
|
|
|
|
servicedir = $(libdir)/bluetooth
|
|
|
|
service_PROGRAMS = bluetoothd-service-serial
|
|
|
|
bluetoothd_service_serial_SOURCES = main.c \
|
|
manager.h manager.c port.h port.c \
|
|
error.h error.c storage.h storage.c
|
|
|
|
LDADD = $(top_builddir)/common/libhelper.a \
|
|
@GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@
|
|
endif
|
|
|
|
AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@
|
|
|
|
INCLUDES = -I$(top_srcdir)/common
|
|
|
|
EXTRA_DIST = serial.service serial-api.txt test-serial
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|