diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-11-13 12:06:28 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-11-13 12:06:28 +0000 |
commit | 5214d0eb545a115a37ea8d132ed86f60595dab8f (patch) | |
tree | 0a2038b61bf4de13f8abb2425e77ce72185d8682 /usr.bin/cvs | |
parent | 83fd2eba9c9236f5cd6f87a6baa35c08c976910e (diff) |
Build admin command.
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/Makefile | 10 | ||||
-rw-r--r-- | usr.bin/cvs/cvs.h | 3 |
2 files changed, 7 insertions, 6 deletions
diff --git a/usr.bin/cvs/Makefile b/usr.bin/cvs/Makefile index 5f3bcab384c..d8ffc3742f1 100644 --- a/usr.bin/cvs/Makefile +++ b/usr.bin/cvs/Makefile @@ -1,13 +1,13 @@ -# $OpenBSD: Makefile,v 1.30 2006/07/07 17:37:17 joris Exp $ +# $OpenBSD: Makefile,v 1.31 2006/11/13 12:06:27 xsa Exp $ PROG= opencvs MAN= cvs.1 cvsignore.5 cvsrc.5 cvswrappers.5 cvsintro.7 CPPFLAGS+=-I${.CURDIR} -SRCS= cvs.c add.c commit.c config.c checkout.c client.c buf.c cmd.c date.y \ - diff.c diff3.c diff_internals.c entries.c fatal.c file.c getlog.c \ - log.c import.c init.c remove.c repository.c rcs.c rcsnum.c rcstime.c \ - remote.c root.c server.c status.c tag.c worklist.c util.c \ +SRCS= cvs.c admin.c add.c commit.c config.c checkout.c client.c buf.c cmd.c \ + date.y diff.c diff3.c diff_internals.c entries.c fatal.c file.c \ + getlog.c log.c import.c init.c remove.c repository.c rcs.c rcsnum.c \ + rcstime.c remote.c root.c server.c status.c tag.c worklist.c util.c \ update.c xmalloc.c CFLAGS+=-Wall diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index ddc091325f7..ba585857c36 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.119 2006/11/09 14:00:14 xsa Exp $ */ +/* $OpenBSD: cvs.h,v 1.120 2006/11/13 12:06:27 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -362,6 +362,7 @@ int update_has_conflict_markers(struct cvs_file *); /* commands */ int cvs_add(int, char **); +int cvs_admin(int, char **); int cvs_commit(int, char **); int cvs_diff(int, char **); int cvs_getlog(int, char **); |