diff options
author | Nick Guay <nguay@redhat.com> | 2012-08-01 12:17:55 -0400 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2012-08-01 21:14:17 +0200 |
commit | 6ea6ec5cb7d9985e2730fb9d4657624d10aed4d8 (patch) | |
tree | 2fa5fe47f80d028b862682769c01d22d8b07bdf8 /Makefile.am | |
parent | 39b20025db12d88cd564666b3de0dbe0ce09ff2c (diff) | |
download | sssd-6ea6ec5cb7d9985e2730fb9d4657624d10aed4d8.tar.gz sssd-6ea6ec5cb7d9985e2730fb9d4657624d10aed4d8.tar.bz2 sssd-6ea6ec5cb7d9985e2730fb9d4657624d10aed4d8.zip |
First-boot sss_seed tool
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 71d4db71..9b361a8c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -81,7 +81,8 @@ sbin_PROGRAMS = \ sss_groupmod \ sss_groupshow \ sss_cache \ - sss_debuglevel + sss_debuglevel \ + sss_seed sssdlibexec_PROGRAMS = \ sssd_nss \ @@ -722,6 +723,13 @@ sss_debuglevel_LDADD = \ libsss_util.la \ $(TOOLS_LIBS) +sss_seed_SOURCES = \ + src/tools/sss_seed.c \ + $(SSSD_TOOLS_OBJ) +sss_seed_LDADD = \ + libsss_util.la \ + $(TOOLS_LIBS) + if BUILD_SUDO sss_sudo_cli_SOURCES = \ src/sss_client/common.c \ |