1 1.1 cgd # This directory contains an implementation of crypt(3) and associated 2 1.2 cgd # routines. the file crypt.c can't be shipped out of the US. it was put 3 1.2 cgd # into this directory to make distribution of exportable and non-exportable 4 1.2 cgd # systems easier. 5 1.3 mycroft # 6 1.4 cgd # $Id: Makefile,v 1.4 1993/10/07 01:36:21 cgd Exp $ 7 1.1 cgd 8 1.1 cgd LIB= crypt 9 1.4 cgd 10 1.4 cgd .if exists(crypt.c) && !defined(EXPORTABLE_SYSTEM) 11 1.1 cgd SRCS= crypt.c 12 1.2 cgd .else 13 1.4 cgd SRCS= crypt_dummy.c 14 1.2 cgd .endif 15 1.4 cgd 16 1.4 cgd MAN3= crypt.0 17 1.4 cgd MLINKS= crypt.3 encrypt.3 crypt.3 setkey.3 18 1.4 cgd 19 1.4 cgd .include <bsd.lib.mk> 20