diff options
author | markm <markm@FreeBSD.org> | 2000-01-09 20:58:00 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2000-01-09 20:58:00 +0000 |
commit | 4ecbd6db44d79348bc815f31096e53104f50838b (patch) | |
tree | 36fa73706fa0587a390c45a3fbf17c9523cb0e35 /crypto/heimdal/kuser/Makefile.am | |
download | FreeBSD-src-4ecbd6db44d79348bc815f31096e53104f50838b.zip FreeBSD-src-4ecbd6db44d79348bc815f31096e53104f50838b.tar.gz |
Import KTH Heimdal, which will be the core of our Kerberos5.
Userland to follow.
Diffstat (limited to 'crypto/heimdal/kuser/Makefile.am')
-rw-r--r-- | crypto/heimdal/kuser/Makefile.am | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/crypto/heimdal/kuser/Makefile.am b/crypto/heimdal/kuser/Makefile.am new file mode 100644 index 0000000..4faed9a --- /dev/null +++ b/crypto/heimdal/kuser/Makefile.am @@ -0,0 +1,37 @@ +# $Id: Makefile.am,v 1.25 1999/09/21 05:12:29 assar Exp $ + +include $(top_srcdir)/Makefile.am.common + +INCLUDES += $(INCLUDE_krb4) + +man_MANS = kinit.1 klist.1 kdestroy.1 kgetcred.1 + +bin_PROGRAMS = kinit kauth klist kdestroy kgetcred + +kinit_SOURCES = kinit.c kinit_options.c + +kauth_SOURCES = kinit.c kauth_options.c + +noinst_PROGRAMS = kverify kdecode_ticket + +CHECK_LOCAL = $(bin_PROGRAMS) + +kauth_LDADD = \ + $(LIB_kafs) \ + $(top_builddir)/lib/krb5/libkrb5.la \ + $(LIB_krb4) \ + $(top_builddir)/lib/des/libdes.la \ + $(top_builddir)/lib/asn1/libasn1.la \ + $(LIB_roken) + +kinit_LDADD = $(kauth_LDADD) + +kdestroy_LDADD = $(kauth_LDADD) + +klist_LDADD = $(kauth_LDADD) + +LDADD = \ + $(top_builddir)/lib/krb5/libkrb5.la \ + $(top_builddir)/lib/des/libdes.la \ + $(top_builddir)/lib/asn1/libasn1.la \ + $(LIB_roken) |