HardenedBSD/secure/usr.bin/bdes/Makefile
Paul Traina 21b4fe120d Remove static in front of declarations for des_setkey and des_cipher
so that linking against -lcrypt (-ldescrypt) will give us the good
versions instead of the stubs in libc.  (These changes need to be
made to the non-US version of libdescrypt too!)

Allow building and support for bdes program.
A bit more work still needs to be done on secure telnet.

Submitted by:	pst
1994-09-07 07:16:52 +00:00

11 lines
138 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $Id$
PROG= bdes
SRCS= bdes.c
LDADD+= -lcrypt
DPADD+= /usr/lib/libcrypt.a
.include <bsd.prog.mk>