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

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

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