blob: c2480120ac3bce6e38b59b707af4da5e7bc46cbf (
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
|
if OBEX
if CONFIGFILES
dbusdir = $(sysconfdir)/dbus-1/system.d
dbus_DATA = bluetooth-transfer.conf
endif
servicedir = $(libdir)/bluetooth
if GLIB
glib_cflags = @GLIB_CFLAGS@
glib_ldadd = @GLIB_LIBS@
else
glib_cflags =
glib_ldadd =
endif
service_PROGRAMS = bluetoothd-service-transfer
bluetoothd_service_transfer_SOURCES = \
main.c session.h session.c
LDADD = $(top_builddir)/common/libhelper.a $(glib_ldadd) \
@DBUS_LIBS@ @OPENOBEX_LIBS@ @BLUEZ_LIBS@
endif
AM_CFLAGS = @BLUEZ_CFLAGS@ @OPENOBEX_CFLAGS@ @DBUS_CFLAGS@ $(glib_cflags)
INCLUDES = -I$(top_srcdir)/common
EXTRA_DIST = bluetooth-transfer.conf transfer-api.txt
MAINTAINERCLEANFILES = Makefile.in
|