diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-11-01 23:08:03 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-03-17 01:55:48 -0400 |
commit | fdfccdbc985944a57017a25f44dd6acc1a937bab (patch) | |
tree | 81b2cc9b38643850778be4c88802e94b046b959a /Makefile.am | |
parent | f12be7e8ca278a5a207d0fd051acec700b804a7a (diff) |
journal-remote: tool to receive messages over the network
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index fed8561ede..923e3c4720 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3130,6 +3130,17 @@ systemd_cat_SOURCES = \ systemd_cat_LDADD = \ libsystemd-journal-core.la +systemd_journal_remote_SOURCES = \ + src/journal/journal-remote-parse.h \ + src/journal/journal-remote-parse.c \ + src/journal/journal-remote-write.h \ + src/journal/journal-remote-write.c \ + src/journal/journal-remote.c + +systemd_journal_remote_LDADD = \ + libsystemd-internal.la \ + libsystemd-journal-core.la + # using _CFLAGS = in the conditional below would suppress AM_CFLAGS journalctl_CFLAGS = \ $(AM_CFLAGS) @@ -3380,7 +3391,8 @@ noinst_LTLIBRARIES += \ libsystemd-journal-internal.la rootlibexec_PROGRAMS += \ - systemd-journald + systemd-journald \ + systemd-journal-remote rootbin_PROGRAMS += \ journalctl |