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

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

1.17    ! xsa         1: #      $OpenBSD: Makefile,v 1.16 2005/10/15 20:38:01 joris Exp $
1.1       deraadt     2:
                      3: .PATH: ${.CURDIR}/../cvs
                      4:
1.7       joris       5: PROG=  rcs
1.15      niallo      6: MAN=   ci.1 co.1 ident.1 rcs.1 rcsclean.1 rcsdiff.1 rlog.1
1.1       deraadt     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:
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
                     21:
                     22: .include <bsd.prog.mk>