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

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

1.14    ! niallo      1: #      $OpenBSD: Makefile,v 1.13 2005/10/06 16:26:43 mickey Exp $
1.1       deraadt     2:
                      3: .PATH: ${.CURDIR}/../cvs
                      4:
1.7       joris       5: PROG=  rcs
1.1       deraadt     6: MAN=   rcs.1
                      7:
1.14    ! niallo      8: SRCS=  ci.c co.c ident.c rcsclean.c rcsdiff.c rcsprog.c rlog.c buf.c date.y \
        !             9:        diff.c log.c rcs.c rcsnum.c strtab.c
1.13      mickey     10: CPPFLAGS+=-I${.CURDIR}/../cvs -DRCSPROG
1.1       deraadt    11:
                     12: # Don't build the links until we actually support those commands
                     13: #LINKS=        ${BINDIR}/ci ${BINDIR}/co ${BINDIR}/rcsclean ${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
                     21:
                     22: .include <bsd.prog.mk>