diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-08 21:01:42 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-08 21:01:42 +0200 |
commit | fa776d8e962da9d90459e2f3e86a2a0c6366ee12 (patch) | |
tree | c75cc3cb9343a53d55741983c317ee8d414f8f0a /Makefile.am | |
parent | ab35fb1bc68625c891a19a66473a9c40ca12e69d (diff) |
cgls: beef up control group dumping and introduce cgls tool
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 eb911fc896..debe475967 100644 --- a/Makefile.am +++ b/Makefile.am @@ -58,7 +58,8 @@ rootbin_PROGRAMS = \ systemd-notify bin_PROGRAMS = \ - systemd-install + systemd-install \ + systemd-cgls if HAVE_GTK bin_PROGRAMS += \ @@ -320,6 +321,7 @@ MANPAGES = \ man/systemctl.1 \ man/systemadm.1 \ man/systemd-install.1 \ + man/systemd-cgls.1 \ man/systemd-notify.1 \ man/sd_notify.3 \ man/sd_booted.3 \ @@ -511,6 +513,16 @@ systemd_install_CFLAGS = \ $(AM_CFLAGS) \ $(DBUS_CFLAGS) +systemd_cgls_SOURCES = \ + src/systemd-cgls.c \ + src/cgroup-show.c + +systemd_cgls_LDADD = \ + libsystemd-basic.la + +systemd_cgls_CFLAGS = \ + $(AM_CFLAGS) + systemadm_SOURCES = \ src/systemadm.vala \ src/systemd-interfaces.vala |