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

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

1.40    ! xsa         1: #      $OpenBSD: Makefile,v 1.39 2007/06/18 17:54:12 joris Exp $
1.1       jfb         2:
1.22      joris       3: PROG=  opencvs
1.38      jmc         4: MAN=   cvs.1 cvs.5 cvsintro.7
1.14      mickey      5: CPPFLAGS+=-I${.CURDIR}
1.1       jfb         6:
1.33      xsa         7: SRCS=  cvs.c add.c admin.c annotate.c commit.c config.c checkout.c client.c \
1.35      xsa         8:        buf.c cmd.c date.y diff.c diff3.c diff_internals.c edit.c entries.c \
1.39      joris       9:        fatal.c file.c getlog.c history.c log.c logmsg.c import.c init.c \
1.40    ! xsa        10:        release.c remove.c repository.c rcs.c rcsnum.c remote.c root.c \
        !            11:        server.c status.c tag.c worklist.c util.c update.c version.c \
        !            12:        watch.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:
1.37      niallo     22: DPADD+=        ${LIBZ}
                     23: LDADD+=        -lz
1.5       deraadt    24:
                     25: INSTALL_STRIP=
                     26:
                     27: .include <bsd.prog.mk>