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

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

1.7     ! joris       1: #      $OpenBSD: Makefile,v 1.6 2005/10/02 20:32:19 joris 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.5       niallo      8: SRCS=  ci.c co.c rcsprog.c buf.c log.c rcs.c rcsnum.c strtab.c
1.1       deraadt     9: CFLAGS+=-I${.CURDIR}/../cvs
                     10:
                     11: # Don't build the links until we actually support those commands
                     12: #LINKS=        ${BINDIR}/ci ${BINDIR}/co ${BINDIR}/rcsclean ${BINDIR}/rcsdiff
                     13:
                     14: CFLAGS+= -Wall
                     15: CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
                     16: CFLAGS+= -Wmissing-declarations
                     17: CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
                     18: CFLAGS+= -Wsign-compare
1.3       niallo     19: CFLAGS+= -DRCSPROG
1.1       deraadt    20:
                     21: .include <bsd.prog.mk>