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

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

1.3     ! niallo      1: #      $OpenBSD: Makefile,v 1.2 2005/04/15 16:15:34 deraadt Exp $
1.1       deraadt     2:
                      3: .PATH: ${.CURDIR}/../cvs
                      4:
                      5: PROG=  rcs
                      6: MAN=   rcs.1
                      7:
                      8: SRCS=  rcsprog.c buf.c log.c rcs.c rcsnum.c strtab.c
                      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>