Makefile revision 1.5
11.1Scgd# This directory contains an implementation of crypt(3) and associated
21.2Scgd# routines.  the file crypt.c can't be shipped out of the US.  it was put
31.2Scgd# into this directory to make distribution of exportable and non-exportable
41.2Scgd# systems easier.
51.3Smycroft#
61.5Scgd#	$Id: Makefile,v 1.5 1994/12/22 09:49:34 cgd Exp $
71.1Scgd
81.1ScgdLIB=	crypt
91.4Scgd
101.4Scgd.if exists(crypt.c) && !defined(EXPORTABLE_SYSTEM)
111.1ScgdSRCS=	crypt.c
121.2Scgd.else
131.4ScgdSRCS=	crypt_dummy.c
141.2Scgd.endif
151.4Scgd
161.5ScgdMAN=	crypt.3
171.4ScgdMLINKS= crypt.3 encrypt.3 crypt.3 setkey.3
181.4Scgd
191.4Scgd.include <bsd.lib.mk>
20