jcs's openbsd hax
openbsd
1# $OpenBSD: Makefile,v 1.48 2010/10/15 08:44:12 tobias Exp $
2
3PROG= opencvs
4MAN= cvsintro.7 # cvs.1 cvs.5
5CPPFLAGS+=-I${.CURDIR}
6
7SRCS= cvs.c add.c admin.c annotate.c atomicio.c commit.c config.c \
8 checkout.c client.c buf.c cmd.c date.y diff.c diff3.c \
9 diff_internals.c edit.c entries.c fatal.c file.c getlog.c hash.c \
10 hash_func.c history.c log.c logmsg.c modules.c import.c init.c \
11 release.c remove.c repository.c rcs.c rcsnum.c rcsparse.c remote.c \
12 root.c server.c status.c tag.c trigger.c worklist.c util.c update.c \
13 version.c watch.c xmalloc.c
14
15CFLAGS+=-Wall
16CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
17CFLAGS+=-Wmissing-declarations
18CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
19CFLAGS+=-Wsign-compare
20DEBUG= -g -ggdb
21YFLAGS=
22
23INSTALL_STRIP=
24
25.include <bsd.prog.mk>