mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-12-02 08:34:26 +08:00
29 lines
612 B
Makefile
29 lines
612 B
Makefile
|
|
if GLIB
|
|
glib_cflags = @GLIB_CFLAGS@
|
|
glib_ldadd = @GLIB_LIBS@
|
|
else
|
|
glib_cflags =
|
|
glib_ldadd =
|
|
endif
|
|
|
|
noinst_PROGRAMS = bluetoothd
|
|
|
|
bluetoothd_SOURCES = main.c system.h \
|
|
manager.h manager.c database.h database.c \
|
|
adapter.h adapter.c service.h service.c
|
|
|
|
bluetoothd_LDADD = $(glib_ldadd) @DBUS_LIBS@ @BLUEZ_LIBS@ \
|
|
$(top_builddir)/sdpd/libsdpserver.a \
|
|
$(top_builddir)/common/libhelper.a
|
|
|
|
if EXPAT
|
|
bluetoothd_LDADD += -lexpat
|
|
endif
|
|
|
|
AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ $(glib_cflags)
|
|
|
|
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid -I$(top_srcdir)/sdpd
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|