summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/cvsd/Makefile
blob: 19964eb6e84ba4eca1fc7592b5f4c5ae800dce66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#	$OpenBSD: Makefile,v 1.10 2005/03/10 15:37:08 jfb Exp $

.PATH:	${.CURDIR}/..

PROG=	cvsd
SRCS=	cvsd.c buf.c conf.y log.c msg.c repo.c sock.c

BINDIR=	/usr/sbin
MAN=	cvsd.8 cvsd.conf.5

CFLAGS+= -Wall -I${.CURDIR}/..
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CFLAGS+= -DCVSD
YFLAGS=

.include <bsd.prog.mk>