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

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

1.40    ! tobias      1: #      $OpenBSD: Makefile,v 1.39 2010/04/15 15:51:40 sobrado Exp $
1.1       deraadt     2:
1.7       joris       3: PROG=  rcs
1.35      xsa         4: MAN=   ci.1 co.1 ident.1 merge.1 rcs.1 rcsclean.1 rcsdiff.1 rcsmerge.1 rlog.1
1.1       deraadt     5:
1.40    ! tobias      6: SRCS=  ci.c co.c ident.c merge.c rcsclean.c rcsdiff.c rcsmerge.c rcsparse.c \
        !             7:        rcsprog.c rlog.c rcsutil.c buf.c date.y diff.c diff3.c rcs.c rcsnum.c \
1.34      xsa         8:        rcstime.c worklist.c xmalloc.c
1.1       deraadt     9:
1.16      joris      10: LINKS= ${BINDIR}/rcs ${BINDIR}/ci ${BINDIR}/rcs ${BINDIR}/co \
1.36      xsa        11:        ${BINDIR}/rcs ${BINDIR}/ident ${BINDIR}/rcs ${BINDIR}/merge \
1.21      joris      12:        ${BINDIR}/rcs ${BINDIR}/rcsclean ${BINDIR}/rcs ${BINDIR}/rcsdiff \
1.37      niallo     13:        ${BINDIR}/rcs ${BINDIR}/rcsmerge ${BINDIR}/rcs ${BINDIR}/rlog
1.1       deraadt    14:
1.33      xsa        15: CPPFLAGS+=-I${.CURDIR}
1.30      ray        16: CFLAGS+=-Wall
                     17: CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
                     18: CFLAGS+=-Wmissing-declarations
                     19: CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
                     20: CFLAGS+=-Wsign-compare
1.19      xsa        21: YFLAGS=
1.1       deraadt    22:
                     23: .include <bsd.prog.mk>