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