aboutsummaryrefslogtreecommitdiff
path: root/sbin/md5/Makefile
diff options
context:
space:
mode:
authorOliver Eikemeier <eik@FreeBSD.org>2004-06-11 16:07:02 +0000
committerOliver Eikemeier <eik@FreeBSD.org>2004-06-11 16:07:02 +0000
commitcb49d42b60bcb90c7942385c7be9acc5d3fa537a (patch)
tree1430582fd9c7ef7641be87f5097d224ce5e20c4b /sbin/md5/Makefile
parent79ef6aa9d177d38189c2eaca42a58d4cd44e056b (diff)
downloadsrc-cb49d42b60bcb90c7942385c7be9acc5d3fa537a.tar.gz
src-cb49d42b60bcb90c7942385c7be9acc5d3fa537a.zip
Add sha1 and rmd160 checksum tools.
Since the algorithms are already supported in libmd, the size increase is small when a dynamic root is used. Approved by: joerg, ru MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=130351
Diffstat (limited to 'sbin/md5/Makefile')
-rw-r--r--sbin/md5/Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/sbin/md5/Makefile b/sbin/md5/Makefile
index 56187d72c4e3..007fb4cc1b2c 100644
--- a/sbin/md5/Makefile
+++ b/sbin/md5/Makefile
@@ -3,7 +3,16 @@
PROG= md5
-LDADD= -lmd
+LINKS= ${BINDIR}/md5 ${BINDIR}/rmd160 \
+ ${BINDIR}/md5 ${BINDIR}/sha1
+
+MLINKS= md5.1 rmd160.1 \
+ md5.1 sha1.1
+
+WARNS?= 6
+WFORMAT?= 1
+
DPADD= ${LIBMD}
+LDADD= -lmd
.include <bsd.prog.mk>