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

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

1.21    ! ray         1: #      $OpenBSD: Makefile,v 1.20 2006/03/09 10:56:33 xsa Exp $
1.1       jfb         2:
1.5       deraadt     3: PROG=  cvs
1.13      xsa         4: MAN=   cvs.1 cvsignore.5 cvsrc.5 cvswrappers.5 cvsintro.7
1.14      mickey      5: CPPFLAGS+=-I${.CURDIR}
1.1       jfb         6:
1.18      xsa         7: SRCS=  cvs.c add.c admin.c annotate.c buf.c checkout.c cmd.c commit.c \
                      8:        compress.c date.y diff.c diff3.c edit.c entries.c fatal.c file.c \
                      9:        getlog.c history.c hist.c import.c init.c log.c logmsg.c proto.c \
1.20      xsa        10:        rcs.c rcsnum.c rcstime.c release.c remove.c req.c resp.c root.c \
                     11:        server.c status.c tag.c update.c util.c version.c watch.c \
                     12:        worklist.c xmalloc.c
1.1       jfb        13:
1.21    ! ray        14: CFLAGS+=-Wall
        !            15: CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
        !            16: CFLAGS+=-Wmissing-declarations
        !            17: CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
        !            18: CFLAGS+=-Wsign-compare
        !            19: DEBUG= -g -ggdb
1.5       deraadt    20: YFLAGS=
1.18      xsa        21:
                     22: DPADD+= ${LIBZ}
                     23: LDADD+= -lz
1.5       deraadt    24:
                     25: INSTALL_STRIP=
                     26:
                     27: .include <bsd.prog.mk>