summaryrefslogtreecommitdiff
path: root/usr.sbin/dvmrpctl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/dvmrpctl/Makefile')
-rw-r--r--usr.sbin/dvmrpctl/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/usr.sbin/dvmrpctl/Makefile b/usr.sbin/dvmrpctl/Makefile
new file mode 100644
index 00000000000..63f027133a8
--- /dev/null
+++ b/usr.sbin/dvmrpctl/Makefile
@@ -0,0 +1,17 @@
+# $OpenBSD: Makefile,v 1.1 2006/06/01 14:21:28 norby Exp $
+
+.PATH: ${.CURDIR}/../dvmrpd
+
+PROG= dvmrpctl
+SRCS= buffer.c imsg.c log.c dvmrpctl.c parser.c
+
+CFLAGS+= -Wall
+CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
+CLFAGS+= -Wmissing-declarations -Wredundant-decls
+CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
+CFLAGS+= -Wsign-compare
+CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../dvmrpd
+
+MAN= dvmrpctl.8
+
+.include <bsd.prog.mk>