blob: 91d7a333dcee3cf8c63649d3dc942c8755f17a90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.8 1999/07/20 09:35:18 mrg Exp $
#
# This directory contains an implementation of crypt(3) and associated
# routines. They have been modified so that decryption is no longer possible,
# and thus are exportable. They were taken from the 4.4BSD-Lite foreign
# distribution.
SRCTOP= ../..
.include <bsd.crypto.mk>
LIB= crypt
SRCS= crypt.c
MAN= crypt.3
MLINKS= crypt.3 encrypt.3 crypt.3 setkey.3
.if defined(CRYPTOPATH)
.sinclude "${CRYPTOPATH}/lib/libcrypt/Makefile.frag"
.endif
.include <bsd.lib.mk>
|