diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-01-13 23:17:54 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-01-14 01:54:33 +0100 |
commit | 755a02c6800246e7e293897d0594fe7e7531ba59 (patch) | |
tree | 6466acaaddf50cb29f4f9b55425191365ee32c6e /Makefile.am | |
parent | 3043935f02da2e680b37cf282587106ad05440ee (diff) |
journal: add new system-cat tool as kind of a more powerfull BSD logger
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 42da4fb753..d94de56ff1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1237,6 +1237,13 @@ systemd_journald_LDADD += \ $(XZ_LIBS) endif +systemd_cat_SOURCES = \ + src/journal/cat.c + +systemd_cat_LDADD = \ + libsystemd-basic.la \ + libsystemd-journal.la + systemd_journalctl_SOURCES = \ src/journal/journalctl.c \ src/pager.c \ @@ -1345,6 +1352,9 @@ rootlibexec_PROGRAMS += \ rootbin_PROGRAMS += \ systemd-journalctl +bin_PROGRAMS += \ + systemd-cat + dist_systemunit_DATA += \ units/systemd-journald.socket |