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

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

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