diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-22 00:35:38 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-22 00:35:38 +0000 |
commit | 09f953a174464ba8c750219cfcf9ecdc344eba0d (patch) | |
tree | a5002c2172cb6f6409e650c5773aee446e2fd0b6 /lib/libc | |
parent | 83da6a9e5a8ac85f7f65661f4c2b7abdd92e4dd8 (diff) |
watch for NOMAN
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/md/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/md/Makefile.inc b/lib/libc/md/Makefile.inc index f2a5ce77065..f8a1f23d492 100644 --- a/lib/libc/md/Makefile.inc +++ b/lib/libc/md/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.2 1996/06/19 02:28:36 niklas Exp $ +# $OpenBSD: Makefile.inc,v 1.3 1996/08/22 00:35:37 deraadt Exp $ .PATH: ${.CURDIR}/md @@ -19,6 +19,7 @@ md4hl.c: mdXhl.c md5hl.c: mdXhl.c sed -e 's/mdX/md5/g' -e 's/MDX/MD5/g' $> > $@ +.if !defined(NOMAN) md4.3: mdX.3 sed -e 's/mdX/md4/g' -e 's/MDX/MD4/g' $> > $@ cat ${>:H}/md4.copyright >> $@ @@ -26,5 +27,6 @@ md4.3: mdX.3 md5.3: mdX.3 sed -e 's/mdX/md5/g' -e 's/MDX/MD5/g' $> > $@ cat ${>:H}/md5.copyright >> $@ +.endif beforedepend: md4hl.c md5hl.c |