summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/rcs/Makefile
diff options
context:
space:
mode:
authorJean-Francois Brousseau <jfb@cvs.openbsd.org>2005-03-05 18:50:44 +0000
committerJean-Francois Brousseau <jfb@cvs.openbsd.org>2005-03-05 18:50:44 +0000
commit9f32c43822324bbcf42edd8f69815bbd935bc934 (patch)
tree8920e08f722301c270d858269337b33f105004aa /usr.bin/cvs/rcs/Makefile
parent4d7b5118ce43c15ad8ef06951d9a21cff09bd146 (diff)
basic implementation of the rcs(1) tool, very useful in debugging the
RCS code. options will get supported as the missing bits get added to the RCS parsing and output code
Diffstat (limited to 'usr.bin/cvs/rcs/Makefile')
-rw-r--r--usr.bin/cvs/rcs/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/usr.bin/cvs/rcs/Makefile b/usr.bin/cvs/rcs/Makefile
new file mode 100644
index 00000000000..794eeda607f
--- /dev/null
+++ b/usr.bin/cvs/rcs/Makefile
@@ -0,0 +1,21 @@
+# $OpenBSD: Makefile,v 1.1 2005/03/05 18:50:43 jfb Exp $
+
+.PATH: ${.CURDIR}/..
+
+PROG= rcs
+MAN= rcs.1
+
+SRCS= rcsprog.c buf.c log.c rcs.c rcsnum.c
+
+BINDIR= /usr/bin
+
+# Don't build the links until we actually support those commands
+#LINKS= ${BINDIR}/ci ${BINDIR}/co ${BINDIR}/rcsclean ${BINDIR}/rcsdiff
+
+CFLAGS+= -Wall
+CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
+CFLAGS+= -Wmissing-declarations
+CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
+CFLAGS+= -Wsign-compare
+
+.include <bsd.prog.mk>