diff options
author | peter <peter@FreeBSD.org> | 1998-10-11 04:45:50 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-10-11 04:45:50 +0000 |
commit | 0f5907340a52b5ec6dac22d23702d576de763d96 (patch) | |
tree | 8e5ca393a3ab14a4746ae03645b3b3e9a3b6bf29 /lib/libopie | |
parent | 586c52184a5ad859f033496b8f89c956b0d691ee (diff) | |
download | FreeBSD-src-0f5907340a52b5ec6dac22d23702d576de763d96.zip FreeBSD-src-0f5907340a52b5ec6dac22d23702d576de763d96.tar.gz |
libopie also depends on libmd. Programs using libopie shouldn't have to
know about libopie's internals in order to use it.
Diffstat (limited to 'lib/libopie')
-rw-r--r-- | lib/libopie/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libopie/Makefile b/lib/libopie/Makefile index f51d143..6fde254 100644 --- a/lib/libopie/Makefile +++ b/lib/libopie/Makefile @@ -1,6 +1,6 @@ # Makefile for libopie # -# $Id: Makefile,v 1.6 1997/09/29 11:38:36 ache Exp $ +# $Id: Makefile,v 1.7 1997/09/29 21:40:17 ache Exp $ # OPIE_DIST?= ${.CURDIR}/../../contrib/opie DIST_DIR= ${OPIE_DIST}/${.CURDIR:T} @@ -22,6 +22,9 @@ SRCS= atob8.c btoa8.c btoh.c challenge.c getsequence.c hash.c hashlen.c \ CFLAGS+=-I${.CURDIR} -I${OPIE_DIST} -I${DIST_DIR} \ -DKEY_FILE=${KEYFILE} +LDADD+= -lmd +DPADD+= ${LIBMD} + MAN4= ${OPIE_DIST}/opie.4 MAN5= ${OPIE_DIST}/opiekeys.5 ${OPIE_DIST}/opieaccess.5 |