Makefile revision 1.4
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.4Scgd# $Id: Makefile,v 1.4 1993/10/07 01:36:21 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.4ScgdMAN3= crypt.0 171.4ScgdMLINKS= crypt.3 encrypt.3 crypt.3 setkey.3 181.4Scgd 191.4Scgd.include <bsd.lib.mk> 20