diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-06-17 22:50:06 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-06-17 22:50:06 +0200 |
commit | 4a2a8b5a82325494f5daf4c66c23fdb4f906c9e6 (patch) | |
tree | 54d0518191112dc9f86506c25462cf8797695dac /Makefile.am | |
parent | 1ebdf2d8793181f31b766b8342391aa1978f9917 (diff) |
notify: add systemd-notify command line tool
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 3e77a4737b..197407cdb0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -48,7 +48,8 @@ AM_CPPFLAGS = \ rootbin_PROGRAMS = \ systemd \ - systemctl + systemctl \ + systemd-notify bin_PROGRAMS = \ systemd-install @@ -373,6 +374,11 @@ systemctl_SOURCES = \ systemctl_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS) systemctl_LDADD = $(DBUS_LIBS) +systemd_notify_SOURCES = \ + src/notify.c \ + src/sd-daemon.c \ + $(BASIC_SOURCES) + systemd_install_SOURCES = \ src/install.c \ src/path-lookup.c \ |