summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-03-30 15:21:06 +0100
committerLennart Poettering <lennart@poettering.net>2013-03-30 15:21:55 +0100
commit2181a7f558eb52a22f09f8add9ac0abb4f2ee016 (patch)
tree0de6c09897dd3ff80d13a9ccfab62839e2234ae5 /Makefile.am
parenta3de5ae1d7d881bbd4869c6c4a200c84bda00ced (diff)
bus: implement server mode, and anonymous authentication
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am15
1 files changed, 14 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 92bd542767..e599da9b53 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1693,7 +1693,8 @@ noinst_LTLIBRARIES += \
noinst_tests += \
test-bus-marshal \
test-bus-signature \
- test-bus-chat
+ test-bus-chat \
+ test-bus-server
noinst_PROGRAMS += \
busctl
@@ -1731,6 +1732,18 @@ test_bus_chat_LDADD = \
libsystemd-bus.la \
libsystemd-id128-internal.la
+test_bus_server_SOURCES = \
+ src/libsystemd-bus/test-bus-server.c
+
+test_bus_server_CFLAGS = \
+ $(AM_CFLAGS) \
+ -pthread
+
+test_bus_server_LDADD = \
+ libsystemd-shared.la \
+ libsystemd-bus.la \
+ libsystemd-id128-internal.la
+
busctl_SOURCES = \
src/libsystemd-bus/busctl.c