Makefile revision 1.7
11.7Sthorpej# $NetBSD: Makefile,v 1.7 1999/07/12 22:05:42 thorpej Exp $ 21.6Scgd# 31.1Scgd# This directory contains an implementation of crypt(3) and associated 41.6Scgd# routines. They have been modified so that decryption is no longer possible, 51.6Scgd# and thus are exportable. They were taken from the 4.4BSD-Lite foreign 61.6Scgd# distribution. 71.1Scgd 81.7SthorpejSRCTOP= ../.. 91.7Sthorpej.include <bsd.crypto.mk> 101.7Sthorpej 111.1ScgdLIB= crypt 121.4Scgd 131.1ScgdSRCS= crypt.c 141.4Scgd 151.5ScgdMAN= crypt.3 161.4ScgdMLINKS= crypt.3 encrypt.3 crypt.3 setkey.3 171.7Sthorpej 181.7Sthorpej.if defined(CRYPTOPATH) 191.7Sthorpej.include "${CRYPTOPATH}/lib/libcrypt/Makefile.frag" 201.7Sthorpej.endif 211.4Scgd 221.4Scgd.include <bsd.lib.mk> 23