first drop of kcc

This commit is contained in:
Love Hornquist Astrand
2010-11-24 15:12:56 -08:00
parent 3b1b7e41b0
commit c5dcbc41d9
3 changed files with 220 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ man_MANS = \
bin_PROGRAMS = kinit klist kdestroy kgetcred kswitch
libexec_PROGRAMS = kdigest kimpersonate
noinst_PROGRAMS = kverify kdecode_ticket generate-requests copy_cred_cache
noinst_PROGRAMS = kcc kverify kdecode_ticket generate-requests copy_cred_cache
kinit_LDADD = \
$(LIB_kafs) \
@@ -37,6 +37,15 @@ kimpersonate_LDADD = $(kinit_LDADD)
kswitch_LDADD = $(kinit_LDADD) $(LIB_readline)
kcc_LDADD = \
$(top_builddir)/lib/sl/libsl.la \
$(kinit_LDADD)
dist_kcc_SOURCES = kcc.c
nodist_kcc_SOURCES = kcc-commands.c
$(kcc_OBJECTS): kcc-commands.h
dist_kdigest_SOURCES = kdigest.c
nodist_kdigest_SOURCES = kdigest-commands.c
@@ -50,16 +59,22 @@ kdigest_LDADD = \
$(kdigest_OBJECTS): kdigest-commands.h
CLEANFILES = kdigest-commands.h kdigest-commands.c
CLEANFILES = \
kdigest-commands.h kdigest-commands.c \
kcc-commands.h kcc-commands.c
kdigest-commands.c kdigest-commands.h: kdigest-commands.in
$(SLC) $(srcdir)/kdigest-commands.in
kcc-commands.c kcc-commands.h: kcc-commands.in
$(SLC) $(srcdir)/kcc-commands.in
LDADD = \
$(top_builddir)/lib/krb5/libkrb5.la \
$(LIB_hcrypto) \
$(top_builddir)/lib/asn1/libasn1.la \
$(LIB_roken)
EXTRA_DIST = $(man_MANS) kuser_locl.h kdigest-commands.in copy_cred_cache.1
EXTRA_DIST = $(man_MANS) \
kuser_locl.h kcc-commands.in kdigest-commands.in copy_cred_cache.1