diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2001-06-27 16:17:11 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2001-06-27 16:17:11 +0000 |
commit | f471e1f6090cc8838e757628be93dbf100d03b73 (patch) | |
tree | fcb99467676348564f775465746fffa6437b3c1b /kerberosV/usr.bin | |
parent | 144aa3269457a0a7a7a4aeeb395549e7067f8f09 (diff) |
Build string2key utility
Diffstat (limited to 'kerberosV/usr.bin')
-rw-r--r-- | kerberosV/usr.bin/Makefile | 4 | ||||
-rw-r--r-- | kerberosV/usr.bin/string2key/Makefile | 14 |
2 files changed, 16 insertions, 2 deletions
diff --git a/kerberosV/usr.bin/Makefile b/kerberosV/usr.bin/Makefile index b463ebdebe5..dcf5066e737 100644 --- a/kerberosV/usr.bin/Makefile +++ b/kerberosV/usr.bin/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.5 2001/06/24 05:45:47 hin Exp $ +# $OpenBSD: Makefile,v 1.6 2001/06/27 16:17:09 hin Exp $ # XXX asn1_compile is compiled in ../Makefile -SUBDIR = kauth klist kdestroy kinit pagsh verify_krb5_conf kf +SUBDIR = kauth klist kdestroy kinit pagsh verify_krb5_conf kf string2key .include <bsd.subdir.mk> diff --git a/kerberosV/usr.bin/string2key/Makefile b/kerberosV/usr.bin/string2key/Makefile new file mode 100644 index 00000000000..39c1be12e0b --- /dev/null +++ b/kerberosV/usr.bin/string2key/Makefile @@ -0,0 +1,14 @@ +# $OpenBSD: Makefile,v 1.1 2001/06/27 16:17:10 hin Exp $ + +KRBDEPTH=../.. +.include <${.CURDIR}/../../Makefile.inc> + +PROG= string2key +MAN= ${PROG}.8 + +.PATH: ${KRB5SRC}/kdc + +CFLAGS+=-I${KRB5SRC}/kdc -I${KRB5SRC}/lib/krb5 +LDADD+= -lkrb5 -ldes -lkafs -lkrb ${LIBROKEN} -lasn1 -lcrypto -lcom_err + +.include <bsd.prog.mk>
\ No newline at end of file |