1# $OpenBSD: Makefile,v 1.47 2008/06/21 15:39:15 joris 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 remote.c root.c \ 12 server.c status.c tag.c trigger.c worklist.c util.c update.c version.c \ 13 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> 26