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

Annotation of src/usr.bin/cvs/Makefile, Revision 1.22

1.22    ! joris       1: #      $OpenBSD: Makefile,v 1.21 2006/04/02 02:42:33 ray Exp $
1.1       jfb         2:
1.22    ! joris       3: PROG=  opencvs
        !             4: MAN=   cvs.1 cvsignore.5 cvsrc.5 cvswrappers.5 cvsintro.7
1.14      mickey      5: CPPFLAGS+=-I${.CURDIR}
1.1       jfb         6:
1.22    ! joris       7: SRCS=  cvs.c commit.c checkout.c buf.c cmd.c date.y diff.c diff3.c \
        !             8:        diff_internals.c entries.c fatal.c file.c log.c repository.c \
        !             9:        rcs.c rcsnum.c rcstime.c root.c status.c worklist.c util.c \
        !            10:        update.c xmalloc.c
1.1       jfb        11:
1.21      ray        12: CFLAGS+=-Wall
                     13: CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
                     14: CFLAGS+=-Wmissing-declarations
                     15: CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
                     16: CFLAGS+=-Wsign-compare
                     17: DEBUG= -g -ggdb
1.5       deraadt    18: YFLAGS=
1.18      xsa        19:
                     20: DPADD+= ${LIBZ}
                     21: LDADD+= -lz
1.5       deraadt    22:
                     23: INSTALL_STRIP=
                     24:
                     25: .include <bsd.prog.mk>