summaryrefslogtreecommitdiff
path: root/lib/libcrypt/Makefile
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>1999-07-12 22:04:09 +0000
committerthorpej <thorpej@NetBSD.org>1999-07-12 22:04:09 +0000
commita3281f72498769b7bf1e7007aaa653b5d26df9d0 (patch)
tree5831d0feb22a89ac038fbe1499e487a0445d9af0 /lib/libcrypt/Makefile
parentdfa5aad003b0dca0a13d0c2452c88d12cf54efa7 (diff)
Use bsd.crypto.mk.
Diffstat (limited to 'lib/libcrypt/Makefile')
-rw-r--r--lib/libcrypt/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile
index e77e2dd7701..acd1921a98b 100644
--- a/lib/libcrypt/Makefile
+++ b/lib/libcrypt/Makefile
@@ -1,10 +1,13 @@
-# $NetBSD: Makefile,v 1.6 1995/02/19 12:18:56 cgd Exp $
+# $NetBSD: Makefile,v 1.7 1999/07/12 22:05:42 thorpej 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
@@ -12,4 +15,8 @@ SRCS= crypt.c
MAN= crypt.3
MLINKS= crypt.3 encrypt.3 crypt.3 setkey.3
+.if defined(CRYPTOPATH)
+.include "${CRYPTOPATH}/lib/libcrypt/Makefile.frag"
+.endif
+
.include <bsd.lib.mk>