Add libcipher.a: libcrypt exports only crypt() but not des_setkey()

which is in libcipher.a
This commit is contained in:
Andrey A. Chernov 1994-09-12 17:27:55 +00:00
parent 3bf56f5e44
commit 95fb75febe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2695

View File

@ -1,10 +1,10 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $Id$
# $Id: Makefile,v 1.2 1994/09/07 07:16:52 pst Exp $
PROG= bdes
SRCS= bdes.c
LDADD+= -lcrypt
DPADD+= /usr/lib/libcrypt.a
LDADD+= -lcrypt -lcipher
DPADD+= /usr/lib/libcrypt.a /usr/lib/libcipher.a
.include <bsd.prog.mk>