[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / rcs

Annotation of src/usr.bin/rcs/Makefile, Revision 1.9

1.9     ! joris       1: #      $OpenBSD: Makefile,v 1.8 2005/10/05 23:11:15 niallo Exp $
1.1       deraadt     2:
                      3: .PATH: ${.CURDIR}/../cvs
                      4:
1.7       joris       5: PROG=  rcs
1.1       deraadt     6: MAN=   rcs.1
                      7:
1.9     ! joris       8: SRCS=  ci.c co.c rcsdiff.c rcsprog.c buf.c diff.c log.c rcs.c rcsnum.c strtab.c
1.1       deraadt     9: CFLAGS+=-I${.CURDIR}/../cvs
                     10:
                     11: # Don't build the links until we actually support those commands
                     12: #LINKS=        ${BINDIR}/ci ${BINDIR}/co ${BINDIR}/rcsclean ${BINDIR}/rcsdiff
                     13:
                     14: CFLAGS+= -Wall
                     15: CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
                     16: CFLAGS+= -Wmissing-declarations
                     17: CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
                     18: CFLAGS+= -Wsign-compare
1.3       niallo     19: CFLAGS+= -DRCSPROG
1.1       deraadt    20:
                     21: .include <bsd.prog.mk>