diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-04-21 17:17:30 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-04-21 17:17:30 +0000 |
commit | 983cac9499e023e5b064864b91c92a9c75bc6465 (patch) | |
tree | 8701df726e0d0ce95be0039d4ed47ca10c417824 /usr.bin/rcs/Makefile | |
parent | 3badf17decc7a041cd9abe96ba152aa9b09aca38 (diff) |
move shared functions into rcsutil.[ch]; this makes rcsprog.c cleaner;
"the voices in my head say OK!" joris@.
Diffstat (limited to 'usr.bin/rcs/Makefile')
-rw-r--r-- | usr.bin/rcs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rcs/Makefile b/usr.bin/rcs/Makefile index e4ec2df4151..3c60706be19 100644 --- a/usr.bin/rcs/Makefile +++ b/usr.bin/rcs/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.30 2006/04/02 02:42:33 ray Exp $ +# $OpenBSD: Makefile,v 1.31 2006/04/21 17:17:29 xsa Exp $ .PATH: ${.CURDIR}/../cvs @@ -6,8 +6,8 @@ PROG= rcs MAN= ci.1 co.1 ident.1 rcs.1 rcsclean.1 rcsdiff.1 rcsmerge.1 rlog.1 SRCS= ci.c co.c ident.c rcsclean.c rcsdiff.c rcsmerge.c rcsprog.c rlog.c \ - buf.c date.y diff.c diff3.c fatal.c log.c rcs.c rcsnum.c rcstime.c \ - util.c worklist.c xmalloc.c + rcsutil.c buf.c date.y diff.c diff3.c fatal.c log.c rcs.c rcsnum.c \ + rcstime.c util.c worklist.c xmalloc.c CPPFLAGS+=-I${.CURDIR}/../cvs -DRCSPROG |