diff options
author | deraadt <> | 1995-12-16 12:55:31 +0000 |
---|---|---|
committer | deraadt <> | 1995-12-16 12:55:31 +0000 |
commit | 767a35a43c1498fbfe4461e5456c6cd41f08de26 (patch) | |
tree | e617d22b73a45255f89c8b85781415b11dd8406a /src/lib/libc/crypt/Makefile.inc | |
parent | 8be58a122b61ab24a5524e848814fe5dd314d243 (diff) | |
download | openbsd-767a35a43c1498fbfe4461e5456c6cd41f08de26.tar.gz openbsd-767a35a43c1498fbfe4461e5456c6cd41f08de26.tar.bz2 openbsd-767a35a43c1498fbfe4461e5456c6cd41f08de26.zip |
non-USA crypto code by davidb@werj.com.au. The source has been split
& copied into two pieces so that use of crypt() pulls in a crypt.o
that contains only that one programmer interface -- this permits USA
export of binaries that use crypt() for authentication purposes.
morecrypt.c contains the other DES programmer interfaces commonly
used.
Diffstat (limited to 'src/lib/libc/crypt/Makefile.inc')
-rw-r--r-- | src/lib/libc/crypt/Makefile.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/libc/crypt/Makefile.inc b/src/lib/libc/crypt/Makefile.inc new file mode 100644 index 0000000000..782615f38e --- /dev/null +++ b/src/lib/libc/crypt/Makefile.inc | |||
@@ -0,0 +1,8 @@ | |||
1 | # $Id: Makefile.inc,v 1.1 1995-12-16 12:55:27 deraadt Exp $ | ||
2 | |||
3 | .PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/crypt ${.CURDIR}/crypt | ||
4 | |||
5 | SRCS+= crypt.c morecrypt.c | ||
6 | |||
7 | MAN+= crypt.3 | ||
8 | MLINKS+=crypt.3 encrypt.3 crypt.3 setkey.3 | ||