1993-04-26 16:45:00 +04:00
|
|
|
# This directory contains an implementation of crypt(3) and associated
|
1993-05-29 17:27:15 +04:00
|
|
|
# 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.
|
1993-08-02 21:48:44 +04:00
|
|
|
#
|
1994-12-22 12:44:45 +03:00
|
|
|
# $Id: Makefile,v 1.5 1994/12/22 09:49:34 cgd Exp $
|
1993-04-26 16:45:00 +04:00
|
|
|
|
|
|
|
LIB= crypt
|
1993-10-07 04:36:21 +03:00
|
|
|
|
|
|
|
.if exists(crypt.c) && !defined(EXPORTABLE_SYSTEM)
|
1993-04-26 16:45:00 +04:00
|
|
|
SRCS= crypt.c
|
1993-05-29 17:27:15 +04:00
|
|
|
.else
|
1993-10-07 04:36:21 +03:00
|
|
|
SRCS= crypt_dummy.c
|
1993-05-29 17:27:15 +04:00
|
|
|
.endif
|
1993-10-07 04:36:21 +03:00
|
|
|
|
1994-12-22 12:44:45 +03:00
|
|
|
MAN= crypt.3
|
1993-10-07 04:36:21 +03:00
|
|
|
MLINKS= crypt.3 encrypt.3 crypt.3 setkey.3
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|