diff options
author | 2001-06-23 00:24:20 +0000 | |
---|---|---|
committer | 2001-06-23 00:24:20 +0000 | |
commit | bf8242239b8749e7e37938540ca6fb593674a6c6 (patch) | |
tree | 96f44895ce00ddbb8151961daf852d0e2265a841 | |
parent | *known_hosts2 is obsolete for hostbased authentication and (diff) | |
download | wireguard-openbsd-bf8242239b8749e7e37938540ca6fb593674a6c6.tar.xz wireguard-openbsd-bf8242239b8749e7e37938540ca6fb593674a6c6.zip |
oops, acutally add the kadmind directory
-rw-r--r-- | kerberosV/libexec/kadmind/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/kerberosV/libexec/kadmind/Makefile b/kerberosV/libexec/kadmind/Makefile new file mode 100644 index 00000000000..e835b94d49e --- /dev/null +++ b/kerberosV/libexec/kadmind/Makefile @@ -0,0 +1,16 @@ +# $OpenBSD: Makefile,v 1.1 2001/06/23 00:24:20 hin Exp $ + +KRBDEPTH=../.. +.include <${.CURDIR}/../../Makefile.inc> + +PROG= kadmind +MAN= ${PROG}.8 + +SRCS= kadmind.c server.c version4.c kadm_conn.c + +.PATH: ${KRB5SRC}/kadmin +CFLAGS+=-I${KRB5SRC}/lib/krb5 -I${KRB5SRC}/lib/kadm5 +LDADD+= -lhdb -lkadm5srv -lkrb5 -lkrb -ldes ${LIBROKEN} -lasn1 -lcrypto \ + -lcom_err + +.include <bsd.prog.mk> |