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

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

1.19    ! xsa         1: #      $OpenBSD: Makefile,v 1.18 2005/10/18 16:20:31 xsa 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 \
                      9:        buf.c date.y diff.c log.c rcs.c rcsnum.c strtab.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 \
                     13:        ${BINDIR}/rcs ${BINDIR}/rcsclean ${BINDIR}/rcs ${BINDIR}/rcsdiff
1.13      mickey     14: #MLINKS=       rcs.1 ci.1 rcs.1 co.1 rcs.1 rcsclean.1 rcs.1 rcsdiff.1
1.1       deraadt    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
1.19    ! xsa        21: YFLAGS=
1.1       deraadt    22:
                     23: .include <bsd.prog.mk>