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