1 # $NetBSD: Makefile,v 1.7 1999/07/12 22:05:42 thorpej Exp $ 2 # 3 # This directory contains an implementation of crypt(3) and associated 4 # routines. They have been modified so that decryption is no longer possible, 5 # and thus are exportable. They were taken from the 4.4BSD-Lite foreign 6 # distribution. 7 8 SRCTOP= ../.. 9 .include <bsd.crypto.mk> 10 11 LIB= crypt 12 13 SRCS= crypt.c 14 15 MAN= crypt.3 16 MLINKS= crypt.3 encrypt.3 crypt.3 setkey.3 17 18 .if defined(CRYPTOPATH) 19 .include "${CRYPTOPATH}/lib/libcrypt/Makefile.frag" 20 .endif 21 22 .include <bsd.lib.mk> 23