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

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

1.10    ! joris       1: #      $OpenBSD: Makefile,v 1.9 2005/10/06 01:24:25 joris 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.10    ! joris       8: SRCS=  ci.c co.c rcsclean.c rcsdiff.c rcsprog.c buf.c diff.c \
        !             9:        log.c rcs.c rcsnum.c strtab.c
1.1       deraadt    10: CFLAGS+=-I${.CURDIR}/../cvs
                     11:
                     12: # Don't build the links until we actually support those commands
                     13: #LINKS=        ${BINDIR}/ci ${BINDIR}/co ${BINDIR}/rcsclean ${BINDIR}/rcsdiff
                     14:
                     15: CFLAGS+= -Wall
                     16: CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
                     17: CFLAGS+= -Wmissing-declarations
                     18: CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
                     19: CFLAGS+= -Wsign-compare
1.3       niallo     20: CFLAGS+= -DRCSPROG
1.1       deraadt    21:
                     22: .include <bsd.prog.mk>