diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-10-17 02:50:09 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-10-17 21:25:42 +0200 |
commit | 6d0274f11547a0f11200bb82bf598a5a253e12cf (patch) | |
tree | cdca61ea9c8a3c120e53c212dab318ffa141c129 /Makefile.am | |
parent | 22349cee29b31cde7ef8582b4882475f553af97a (diff) | |
download | systemd-6d0274f11547a0f11200bb82bf598a5a253e12cf.tar.gz |
timedatectl: introduce new command line client for timedated
Much like logind has a client in loginctl, and journald in journalctl
introduce timedatectl, to change the system time (incl. RTC), timezones
and related settings.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 0a3ed18a4e..06dd1b1a86 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3194,6 +3194,24 @@ MANPAGES_ALIAS += \ man/systemd-timedated.8 man/systemd-timedated.8: man/systemd-timedated.service.8 + +timedatectl_SOURCES = \ + src/timedate/timedatectl.c + +timedatectl_CFLAGS = \ + $(AM_CFLAGS) \ + $(DBUS_CFLAGS) + +timedatectl_LDADD = \ + libsystemd-shared.la \ + libsystemd-dbus.la + +bin_PROGRAMS += \ + timedatectl + +MANPAGES += \ + man/timedatectl.1 + endif polkitpolicy_in_files += \ |