diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-03-28 23:07:37 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-03-28 23:07:37 +0000 |
commit | 6edc24e5c32ace42c63627c10f0c139df8cfc71d (patch) | |
tree | e1ac1a321e45f558843ec53919590551954afc2d | |
parent | 5bf5880f231f5a1a1a950f5a5d4a7a94608eb658 (diff) |
build with the yacc date parser
-rw-r--r-- | usr.bin/cvs/cvs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/cvs/Makefile b/usr.bin/cvs/cvs/Makefile index c982723f3dd..ce71c7135e5 100644 --- a/usr.bin/cvs/cvs/Makefile +++ b/usr.bin/cvs/cvs/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.20 2005/03/24 01:21:49 jfb Exp $ +# $OpenBSD: Makefile,v 1.21 2005/03/28 23:07:36 jfb Exp $ .PATH: ${.CURDIR}/.. PROG= cvs MAN= cvs.1 cvsrc.5 cvsintro.7 -SRCS= cvs.c add.c admin.c annotate.c buf.c checkout.c cmd.c commit.c diff.c \ +SRCS= cvs.c add.c admin.c annotate.c buf.c checkout.c commit.c date.y diff.c \ entries.c file.c getlog.c history.c hist.c import.c init.c log.c \ logmsg.c proto.c rcs.c rcsnum.c remove.c req.c resp.c root.c \ server.c sock.c status.c strtab.c tag.c update.c util.c version.c @@ -17,7 +17,7 @@ BINOWN= root #BINMODE=555 CFLAGS= -g -ggdb -CFLAGS+= -Wall +CFLAGS+= -I${.CURDIR}/.. -Wall CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual |