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

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

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