summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kerberosV/usr.bin/Makefile4
-rw-r--r--kerberosV/usr.bin/kf/Makefile14
2 files changed, 16 insertions, 2 deletions
diff --git a/kerberosV/usr.bin/Makefile b/kerberosV/usr.bin/Makefile
index acc2657ed6e..b463ebdebe5 100644
--- a/kerberosV/usr.bin/Makefile
+++ b/kerberosV/usr.bin/Makefile
@@ -1,7 +1,7 @@
-# $OpenBSD: Makefile,v 1.4 2001/06/23 21:54:07 hin Exp $
+# $OpenBSD: Makefile,v 1.5 2001/06/24 05:45:47 hin Exp $
# XXX asn1_compile is compiled in ../Makefile
-SUBDIR = kauth klist kdestroy kinit pagsh verify_krb5_conf
+SUBDIR = kauth klist kdestroy kinit pagsh verify_krb5_conf kf
.include <bsd.subdir.mk>
diff --git a/kerberosV/usr.bin/kf/Makefile b/kerberosV/usr.bin/kf/Makefile
new file mode 100644
index 00000000000..7e9c10bc89a
--- /dev/null
+++ b/kerberosV/usr.bin/kf/Makefile
@@ -0,0 +1,14 @@
+# $OpenBSD: Makefile,v 1.1 2001/06/24 05:45:48 hin Exp $
+
+KRBDEPTH=../..
+.include <${.CURDIR}/../../Makefile.inc>
+
+PROG= kf
+
+SRCS= kf.c
+
+.PATH: ${KRB5SRC}/appl/kf
+
+LDADD+= -lkrb5 -ldes -lkafs -l45 -lkrb ${LIBROKEN} -lasn1 -lcrypto -lcom_err
+
+.include <bsd.prog.mk> \ No newline at end of file