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