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