diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-07-07 03:29:56 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-07-07 03:29:56 +0200 |
commit | abca4822916b85ae5b0b2bef5d458ea2225d25ab (patch) | |
tree | 9ae5467d12cfd4b518e8bd428666fb63573a62f5 /Makefile.am | |
parent | 1968a360405e302d4d2c2abc03a3314f81375156 (diff) | |
download | systemd-abca4822916b85ae5b0b2bef5d458ea2225d25ab.tar.gz |
loginctl: add basic implementation of loginctl for introspecting controlling sessions/users/seats
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index b4feb7a9a2..78e5caf35b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -116,6 +116,7 @@ endif rootbin_PROGRAMS = \ systemd \ systemctl \ + systemd-loginctl \ systemd-notify \ systemd-ask-password \ systemd-tty-ask-password-agent \ @@ -1130,6 +1131,21 @@ systemctl_LDADD = \ libsystemd-daemon.la \ $(DBUS_LIBS) +systemd_loginctl_SOURCES = \ + src/loginctl.c \ + src/dbus-common.c \ + src/cgroup-show.c \ + src/cgroup-util.c \ + src/pager.c + +systemd_loginctl_CFLAGS = \ + $(AM_CFLAGS) \ + $(DBUS_CFLAGS) + +systemd_loginctl_LDADD = \ + libsystemd-basic.la \ + $(DBUS_LIBS) + systemd_notify_SOURCES = \ src/notify.c \ src/sd-readahead.c |