summaryrefslogtreecommitdiffstats
path: root/daemon/Makefile.am
blob: 336f2a255e1658e56c739c24c2eb437650f84ff4 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

if CONFIGFILES
confdir = $(sysconfdir)/bluetooth

conf_DATA = echo.service
endif

servicedir = $(libdir)/bluetooth

if GLIB
glib_cflags = @GLIB_CFLAGS@
glib_ldadd  = @GLIB_LIBS@
else
glib_cflags =
glib_ldadd  =
endif

noinst_PROGRAMS = bluetoothd

service_PROGRAMS = bluetoothd-service-echo

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

bluetoothd_service_echo_SOURCES = echo.c

bluetoothd_service_echo_LDADD = \
	$(top_builddir)/common/libhelper.a \
	$(glib_ldadd) @DBUS_LIBS@ @BLUEZ_LIBS@

if EXPAT
bluetoothd_LDADD += -lexpat
endif

AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ $(glib_cflags)

INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/sdpd

EXTRA_DIST = echo.service

MAINTAINERCLEANFILES = Makefile.in