diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-10-06 16:26:44 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-10-06 16:26:44 +0000 |
commit | 3a2f92b057e9e283bc7eea05e26a2c1752b7dfdb (patch) | |
tree | 968a5802c077566dbf730b3a90aff87538e472d1 /usr.bin/rcs/Makefile | |
parent | 44454439fcba57051f3f7d4dc935caf0423598c7 (diff) |
put cpp opts into CPPFLAGS and add a future MLINKS; joris@ ok
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 4d68b2ac077..13657e013dc 100644 --- a/usr.bin/rcs/Makefile +++ b/usr.bin/rcs/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2005/10/06 15:39:11 joris Exp $ +# $OpenBSD: Makefile,v 1.13 2005/10/06 16:26:43 mickey Exp $ .PATH: ${.CURDIR}/../cvs @@ -7,16 +7,16 @@ MAN= rcs.1 SRCS= ci.c co.c ident.c rcsclean.c rcsdiff.c rcsprog.c rlog.c buf.c diff.c \ log.c rcs.c rcsnum.c strtab.c -CFLAGS+=-I${.CURDIR}/../cvs +CPPFLAGS+=-I${.CURDIR}/../cvs -DRCSPROG # Don't build the links until we actually support those commands #LINKS= ${BINDIR}/ci ${BINDIR}/co ${BINDIR}/rcsclean ${BINDIR}/rcsdiff +#MLINKS= rcs.1 ci.1 rcs.1 co.1 rcs.1 rcsclean.1 rcs.1 rcsdiff.1 CFLAGS+= -Wall CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+= -Wsign-compare -CFLAGS+= -DRCSPROG .include <bsd.prog.mk> |