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

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

1.20    ! xsa         1: #      $OpenBSD: Makefile,v 1.19 2006/03/08 20:19:39 joris 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.5       deraadt    14: CFLAGS= -g -ggdb
1.14      mickey     15: CFLAGS+= -Wall
1.5       deraadt    16: CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
                     17: CFLAGS+= -Wmissing-declarations
                     18: CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
                     19: CFLAGS+= -Wsign-compare
                     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>