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

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

1.25    ! xsa         1: #      $OpenBSD: Makefile,v 1.24 2005/11/12 21:34:48 niallo Exp $
1.1       deraadt     2:
                      3: .PATH: ${.CURDIR}/../cvs
                      4:
1.7       joris       5: PROG=  rcs
1.25    ! xsa         6: MAN=   ci.1 co.1 ident.1 rcs.1 rcsclean.1 rcsdiff.1 rcsmerge.1 rlog.1 \
        !             7:        rcsintro.7
1.1       deraadt     8:
1.18      xsa         9: SRCS=  ci.c co.c ident.c rcsclean.c rcsdiff.c rcsmerge.c rcsprog.c rlog.c \
1.24      niallo     10:        buf.c date.y diff.c diff3.c log.c rcs.c rcsnum.c util.c
1.13      mickey     11: CPPFLAGS+=-I${.CURDIR}/../cvs -DRCSPROG
1.1       deraadt    12:
1.16      joris      13: LINKS= ${BINDIR}/rcs ${BINDIR}/ci ${BINDIR}/rcs ${BINDIR}/co \
1.21      joris      14:        ${BINDIR}/rcs ${BINDIR}/rcsclean ${BINDIR}/rcs ${BINDIR}/rcsdiff \
1.22      xsa        15:        ${BINDIR}/rcs ${BINDIR}/rcsmerge ${BINDIR}/rcs ${BINDIR}/rlog \
                     16:        ${BINDIR}/rcs ${BINDIR}/ident
1.1       deraadt    17:
                     18: CFLAGS+= -Wall
                     19: CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
                     20: CFLAGS+= -Wmissing-declarations
                     21: CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
                     22: CFLAGS+= -Wsign-compare
1.19      xsa        23: YFLAGS=
1.1       deraadt    24:
                     25: .include <bsd.prog.mk>