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

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

1.31    ! xsa         1: #      $OpenBSD: Makefile,v 1.30 2006/07/07 17:37:17 joris 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.31    ! xsa         7: SRCS=  cvs.c admin.c add.c commit.c config.c checkout.c client.c buf.c cmd.c \
        !             8:        date.y diff.c diff3.c diff_internals.c entries.c fatal.c file.c \
        !             9:        getlog.c log.c import.c init.c remove.c repository.c rcs.c rcsnum.c \
        !            10:        rcstime.c remote.c root.c server.c status.c tag.c worklist.c util.c \
1.30      joris      11:        update.c xmalloc.c
1.1       jfb        12:
1.21      ray        13: CFLAGS+=-Wall
                     14: CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
                     15: CFLAGS+=-Wmissing-declarations
                     16: CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
                     17: CFLAGS+=-Wsign-compare
                     18: DEBUG= -g -ggdb
1.5       deraadt    19: YFLAGS=
1.18      xsa        20:
                     21: DPADD+= ${LIBZ}
                     22: LDADD+= -lz
1.5       deraadt    23:
                     24: INSTALL_STRIP=
                     25:
                     26: .include <bsd.prog.mk>