summaryrefslogtreecommitdiffstats
path: root/usr.bin/cvs/cvsd
diff options
context:
space:
mode:
authorjfb <jfb@openbsd.org>2004-07-25 03:29:34 +0000
committerjfb <jfb@openbsd.org>2004-07-25 03:29:34 +0000
commit6409dc45cd4202ea197771578c55e89e52bf3cfe (patch)
tree02ee586841e52e6372389fba99dc4f58898629c5 /usr.bin/cvs/cvsd
parentMan page overhaul: cvsacl.5 goes away, ACLs will now be part of the (diff)
downloadwireguard-openbsd-6409dc45cd4202ea197771578c55e89e52bf3cfe.tar.xz
wireguard-openbsd-6409dc45cd4202ea197771578c55e89e52bf3cfe.zip
* rework on the child API, still needs more functionality
* move the ACL parsing code into the more general conf.y, which handles parsing of the whole configuration file
Diffstat (limited to 'usr.bin/cvs/cvsd')
-rw-r--r--usr.bin/cvs/cvsd/Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/usr.bin/cvs/cvsd/Makefile b/usr.bin/cvs/cvsd/Makefile
index f69a0b749f4..e69ad67b321 100644
--- a/usr.bin/cvs/cvsd/Makefile
+++ b/usr.bin/cvs/cvsd/Makefile
@@ -1,11 +1,15 @@
-# $Id: Makefile,v 1.1.1.1 2004/07/13 22:02:40 jfb Exp $
+# $Id: Makefile,v 1.2 2004/07/25 03:29:36 jfb Exp $
.PATH: ${.CURDIR}/..
-BINDIR=/usr/sbin
PROG=cvsd
-MAN=cvsd.8
+SRCS= cvsd.c conf.y log.c msg.c sock.c
+
+BINDIR=/usr/sbin
+MAN=cvsd.8 cvsd.conf.5
-SRCS= cvsd.c aclparse.y log.c msg.c sock.c
+CFLAGS+= -Wall
+CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
+CFLAGS+= -Wsign-compare
.include <bsd.prog.mk>