diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index c94c192ce3..d8e9b16be0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1654,12 +1654,19 @@ libsystemd_bus_la_SOURCES = \ src/libsystemd-bus/bus-type.c \ src/libsystemd-bus/bus-type.h +libsystemd_bus_la_LIBADD = \ + libsystemd-id128-internal.la + noinst_LTLIBRARIES += \ libsystemd-bus.la noinst_tests += \ test-bus-marshal \ - test-bus-signature + test-bus-signature \ + test-bus-chat + +noinst_PROGRAMS += \ + busctl test_bus_marshal_SOURCES = \ src/libsystemd-bus/test-bus-marshal.c @@ -1682,6 +1689,25 @@ test_bus_signature_LDADD = \ libsystemd-shared.la \ libsystemd-bus.la +test_bus_chat_SOURCES = \ + src/libsystemd-bus/test-bus-chat.c + +test_bus_chat_CFLAGS = \ + $(AM_CFLAGS) \ + -pthread + +test_bus_chat_LDADD = \ + libsystemd-shared.la \ + libsystemd-bus.la \ + libsystemd-id128-internal.la + +busctl_SOURCES = \ + src/libsystemd-bus/busctl.c + +busctl_LDADD = \ + libsystemd-shared.la \ + libsystemd-bus.la + # ------------------------------------------------------------------------------ if ENABLE_GTK_DOC SUBDIRS += \ |