summary refs log tree commit diff
path: root/src/bin/md5/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/md5/Makefile')
-rw-r--r--src/bin/md5/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/bin/md5/Makefile b/src/bin/md5/Makefile
new file mode 100644
index 0000000..9760377
--- /dev/null
+++ b/src/bin/md5/Makefile
@@ -0,0 +1,17 @@
+#	$OpenBSD: Makefile,v 1.14 2014/03/20 22:03:56 tedu Exp $
+
+PROG=	md5
+SRCS=	crc.c md5.c
+MAN=	cksum.1 md5.1
+LINKS=	${BINDIR}/md5 ${BINDIR}/sha1 \
+	${BINDIR}/md5 ${BINDIR}/sha256 \
+	${BINDIR}/md5 ${BINDIR}/sha512 \
+	${BINDIR}/md5 ${BINDIR}/cksum
+MLINKS= md5.1 sha1.1
+MLINKS+= md5.1 sha256.1
+MLINKS+= md5.1 sha512.1
+
+CPPFLAGS+= -I${.CURDIR}
+COPTS+=	-Wall -Wconversion -Wmissing-prototypes
+
+.include <bsd.prog.mk>