diff options
author | csgr <csgr@FreeBSD.org> | 1994-09-07 21:48:54 +0000 |
---|---|---|
committer | csgr <csgr@FreeBSD.org> | 1994-09-07 21:48:54 +0000 |
commit | 9baa6a9d3fde056bbc58129bf40860b28a23f68a (patch) | |
tree | bc67dfb4b3f603c884b4cb569368cb86aa03b7e0 /secure/lib/libcipher/test | |
parent | 8956b2c26c304a8e555863a4f790e5334bc18510 (diff) | |
download | FreeBSD-src-9baa6a9d3fde056bbc58129bf40860b28a23f68a.zip FreeBSD-src-9baa6a9d3fde056bbc58129bf40860b28a23f68a.tar.gz |
- Remove crypt() - it's in libcrypt
- remove ^L's - CTM will probably choke on them
- add PRECIOUSLIB to Makefile
- name changes libcrypt -> libcipher
Submitted by: Geoff.
Diffstat (limited to 'secure/lib/libcipher/test')
-rw-r--r-- | secure/lib/libcipher/test/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/secure/lib/libcipher/test/Makefile b/secure/lib/libcipher/test/Makefile index 3afec4b..f1cf6cc 100644 --- a/secure/lib/libcipher/test/Makefile +++ b/secure/lib/libcipher/test/Makefile @@ -2,12 +2,13 @@ # Hacked Makefile to compile and run the DES-certification program, # but not install anything. # -# $Id: Makefile,v 1.1 1994/09/07 08:55:26 g89r4222 Exp $ +# $Id: Makefile,v 1.1.1.1 1994/09/07 21:18:08 csgr Exp $ # LIBCRYPT!=cd $(.CURDIR)/..; \ - printf "xxx:\n\techo \$${.OBJDIR}/libcrypt.a\n" | make -r -s -f - xxx + printf "xxx:\n\techo \$${.OBJDIR}/libcipher.a\n" | make -r -s -f - xxx #CFLAGS+= -DHAVE_CRYPT16 +LIBCRYPT+= -lcrypt TARGETS=cert speedcrypt speeddes @@ -52,4 +53,4 @@ clean: install: -.include <bsd.obj.mk> +.include <bsd.prog.mk> |