diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-12 21:09:03 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-12 21:09:03 +0000 |
commit | 6103cfab79bee133e65cbb88bad41566950c0e60 (patch) | |
tree | d16bc8e0e85c2e7b69e029257178c5cd5d75979f /bin/md5/Makefile | |
parent | 24b11c3b71fe0acc70f0a53e99ff0b6d3911b8ad (diff) |
md5(1) is now capable of doing md4, md5 and sha1 digests. Currently
only md5 and sha1 are used.
Diffstat (limited to 'bin/md5/Makefile')
-rw-r--r-- | bin/md5/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/md5/Makefile b/bin/md5/Makefile index 46e59bf216c..14215dc68aa 100644 --- a/bin/md5/Makefile +++ b/bin/md5/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.3 1996/11/24 02:26:00 niklas Exp $ +# $OpenBSD: Makefile,v 1.4 1997/07/12 21:09:01 millert Exp $ PROG= md5 -SRCS= md5.c -COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes -Werror \ - -DPROTOTYPES +MAN= md5.1 sha1.1 +LINKS= ${BINDIR}/md5 ${BINDIR}/sha1 +COPTS+= -Wall -Wconversion -Wmissing-prototypes -Werror .include <bsd.prog.mk> |