diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-01-12 09:27:26 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-01-12 09:27:26 +0000 |
commit | f73c77146258edc89b22e41bdaab83a4d0c0d942 (patch) | |
tree | 6e504a5d3b498912d2346eb574059bbd18afc19c | |
parent | 7593f02e4f7b8079418c1d55eb0037a92bb9c6b7 (diff) |
link to build the edit, editors, unedit, watch, and watchers commands.
more work needs to be done for them though.
-rw-r--r-- | usr.bin/cvs/Makefile | 8 | ||||
-rw-r--r-- | usr.bin/cvs/cvs.h | 7 |
2 files changed, 10 insertions, 5 deletions
diff --git a/usr.bin/cvs/Makefile b/usr.bin/cvs/Makefile index b7f66594e71..c44cacb15a2 100644 --- a/usr.bin/cvs/Makefile +++ b/usr.bin/cvs/Makefile @@ -1,14 +1,14 @@ -# $OpenBSD: Makefile,v 1.34 2007/01/07 02:39:24 joris Exp $ +# $OpenBSD: Makefile,v 1.35 2007/01/12 09:27:25 xsa Exp $ PROG= opencvs MAN= cvs.1 cvsignore.5 cvsrc.5 cvswrappers.5 cvsintro.7 CPPFLAGS+=-I${.CURDIR} SRCS= cvs.c add.c admin.c annotate.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 logmsg.c import.c init.c remove.c \ + buf.c cmd.c date.y diff.c diff3.c diff_internals.c edit.c entries.c \ + fatal.c file.c getlog.c log.c logmsg.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 version.c xmalloc.c + status.c tag.c worklist.c util.c update.c version.c watch.c xmalloc.c CFLAGS+=-Wall CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index d4cadd4a7e5..0182af44319 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.126 2007/01/07 02:39:24 joris Exp $ */ +/* $OpenBSD: cvs.h,v 1.127 2007/01/12 09:27:25 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -375,12 +375,17 @@ int cvs_admin(int, char **); int cvs_annotate(int, char **); int cvs_commit(int, char **); int cvs_diff(int, char **); +int cvs_edit(int, char **); +int cvs_editors(int, char **); int cvs_getlog(int, char **); int cvs_init(int, char **); int cvs_remove(int, char **); int cvs_status(int, char **); int cvs_tag(int, char **); +int cvs_unedit(int, char **); int cvs_update(int, char **); int cvs_version(int, char **); +int cvs_watch(int, char **); +int cvs_watchers(int, char **); #endif |