blob: 48c8989ac204ec84d8228115890344afbe2360b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $OpenBSD: Makefile,v 1.41 2007/09/17 10:07:21 tobias Exp $
PROG= opencvs
MAN= cvs.1 cvs.5 cvsintro.7
CPPFLAGS+=-I${.CURDIR}
SRCS= cvs.c add.c admin.c annotate.c atomicio.c commit.c config.c \
checkout.c client.c buf.c cmd.c date.y diff.c diff3.c \
diff_internals.c edit.c entries.c fatal.c file.c getlog.c history.c \
log.c logmsg.c import.c init.c release.c remove.c repository.c \
rcs.c rcsnum.c remote.c root.c server.c status.c tag.c worklist.c \
util.c update.c version.c watch.c xmalloc.c
CFLAGS+=-Wall
CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
CFLAGS+=-Wmissing-declarations
CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+=-Wsign-compare
DEBUG= -g -ggdb
YFLAGS=
DPADD+= ${LIBZ}
LDADD+= -lz
INSTALL_STRIP=
.include <bsd.prog.mk>
|