diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-10-06 14:55:30 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-10-06 14:55:30 +0000 |
commit | 5e9225b5720c4af1ae910249c95b2e940b953a39 (patch) | |
tree | 101c2a0ef188b9fbfffb361aedc0f99cb5643603 /lib/libc/md/Makefile.inc | |
parent | e7b8e7a19a9b8d390ef91a79d68afc0864e03ca7 (diff) |
- let cryptographic checksums refer to each other
- avoid .Xref to one's own manpage
Diffstat (limited to 'lib/libc/md/Makefile.inc')
-rw-r--r-- | lib/libc/md/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/md/Makefile.inc b/lib/libc/md/Makefile.inc index c862c56e486..9998211f279 100644 --- a/lib/libc/md/Makefile.inc +++ b/lib/libc/md/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.5 1998/11/20 11:18:42 d Exp $ +# $OpenBSD: Makefile.inc,v 1.6 1999/10/06 14:55:29 espie Exp $ .PATH: ${LIBCSRCDIR}/md @@ -15,11 +15,11 @@ CLEANFILES+= md[45]hl.c md[45].3 all: md4.3 md5.3 md4.3: mdX.3 - sed -e 's/mdX/md4/g' -e 's/MDX/MD4/g' $> > $@ + sed -e 's/mdX/md4/g' -e 's/mdY/md5/g' -e 's/MDX/MD4/g' $> > $@ cat ${>:H}/md4.copyright >> $@ md5.3: mdX.3 - sed -e 's/mdX/md5/g' -e 's/MDX/MD5/g' $> > $@ + sed -e 's/mdX/md5/g' -e 's/mdY/md4/g' -e 's/MDX/MD5/g' $> > $@ cat ${>:H}/md5.copyright >> $@ .endif |