diff options
author | Esben Norby <norby@cvs.openbsd.org> | 2006-06-01 14:21:29 +0000 |
---|---|---|
committer | Esben Norby <norby@cvs.openbsd.org> | 2006-06-01 14:21:29 +0000 |
commit | 7e6c0a91af1cce984648479f09233a007773f44a (patch) | |
tree | 512d59ba8711076cf2b75d66584022dad69a6d43 /usr.sbin/dvmrpctl/Makefile | |
parent | 50b1cb4247102023b3d4274ecdef33ecc5ecf92d (diff) |
Controller for dvmrpd.
Almost all available information in dvmrpd can be read.
Not connected to builds yet.
ok claudio@
Diffstat (limited to 'usr.sbin/dvmrpctl/Makefile')
-rw-r--r-- | usr.sbin/dvmrpctl/Makefile | 17 |
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> |