diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2007-01-25 15:09:25 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2007-01-25 15:09:25 +0000 |
commit | a97908f58756db9ca11a56b4e378f04871ddde57 (patch) | |
tree | f2a5da867a01f6f0c5076045d1c7373cc7bfd945 /daemon/Makefile.am | |
parent | 24aaa3c3825fd26e34730fe64f5e375f7e94bb7d (diff) |
Move agent examples to daemon directory
Diffstat (limited to 'daemon/Makefile.am')
-rw-r--r-- | daemon/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 7bfce4a8..90fad65d 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -23,7 +23,7 @@ dbusdir = $(sysconfdir)/dbus-1/system.d dbus_DATA = bluetooth.conf endif -noinst_PROGRAMS = bluetoothd +noinst_PROGRAMS = bluetoothd passkey-agent auth-agent bluetoothd_SOURCES = main.c system.h \ manager.h manager.c database.h database.c \ @@ -38,6 +38,14 @@ if EXPAT bluetoothd_LDADD += -lexpat endif +passkey_agent_SOURCES = passkey-agent.c + +passkey_agent_LDADD = @DBUS_LIBS@ + +auth_agent_SOURCES = auth-agent.c + +auth_agent_LDADD = @DBUS_LIBS@ + AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/sdpd |