* Change mdns program name to mdnsctl.
diff --git a/mdnsctl/Makefile b/mdnsctl/Makefile
new file mode 100644
index 0000000..9771027
--- /dev/null
+++ b/mdnsctl/Makefile
@@ -0,0 +1,13 @@
+.PATH:		${.CURDIR}/../
+
+PROG=	mdnsctl
+SRCS=	buffer.c imsg.c log.c mdns.c parser.c mdns_api.c
+CFLAGS+= -g -Wall
+CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
+CFLAGS+= -Wmissing-declarations
+CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
+CFLAGS+= -Wsign-compare
+CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../
+#MAN=	mdns.8
+
+.include <bsd.prog.mk>