summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/cvsd
diff options
context:
space:
mode:
authorJean-Francois Brousseau <jfb@cvs.openbsd.org>2004-07-25 03:29:37 +0000
committerJean-Francois Brousseau <jfb@cvs.openbsd.org>2004-07-25 03:29:37 +0000
commitbe169be1824b7a9864243a1100db89997b425636 (patch)
tree8f691c8397c668dedba865aa251102a8ac81b502 /usr.bin/cvs/cvsd
parent45ed71a892d6d296211def9e68018a8e3deccc89 (diff)
* 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 ad2e5ec891c..e69ad67b321 100644
--- a/usr.bin/cvs/cvsd/Makefile
+++ b/usr.bin/cvs/cvsd/Makefile
@@ -1,11 +1,15 @@
-# $Id: Makefile,v 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>