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

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

1.31    ! xsa         1: #      $OpenBSD: Makefile,v 1.30 2006/04/02 02:42:33 ray Exp $
1.1       deraadt     2:
                      3: .PATH: ${.CURDIR}/../cvs
                      4:
1.7       joris       5: PROG=  rcs
1.27      jmc         6: MAN=   ci.1 co.1 ident.1 rcs.1 rcsclean.1 rcsdiff.1 rcsmerge.1 rlog.1
1.1       deraadt     7:
1.18      xsa         8: SRCS=  ci.c co.c ident.c rcsclean.c rcsdiff.c rcsmerge.c rcsprog.c rlog.c \
1.31    ! xsa         9:        rcsutil.c buf.c date.y diff.c diff3.c fatal.c log.c rcs.c rcsnum.c \
        !            10:        rcstime.c util.c worklist.c xmalloc.c
1.26      joris      11:
1.13      mickey     12: CPPFLAGS+=-I${.CURDIR}/../cvs -DRCSPROG
1.1       deraadt    13:
1.16      joris      14: LINKS= ${BINDIR}/rcs ${BINDIR}/ci ${BINDIR}/rcs ${BINDIR}/co \
1.21      joris      15:        ${BINDIR}/rcs ${BINDIR}/rcsclean ${BINDIR}/rcs ${BINDIR}/rcsdiff \
1.22      xsa        16:        ${BINDIR}/rcs ${BINDIR}/rcsmerge ${BINDIR}/rcs ${BINDIR}/rlog \
                     17:        ${BINDIR}/rcs ${BINDIR}/ident
1.1       deraadt    18:
1.30      ray        19: CFLAGS+=-Wall
                     20: CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
                     21: CFLAGS+=-Wmissing-declarations
                     22: CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
                     23: CFLAGS+=-Wsign-compare
                     24: DEBUG= -g -ggdb
1.19      xsa        25: YFLAGS=
1.1       deraadt    26:
                     27: .include <bsd.prog.mk>