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

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

1.18    ! xsa         1: #      $OpenBSD: Makefile,v 1.17 2005/12/10 20:27:45 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 \
        !            10:        rcs.c rcsnum.c release.c remove.c req.c resp.c root.c server.c \
        !            11:        status.c tag.c update.c util.c version.c watch.c xmalloc.c
1.1       jfb        12:
1.5       deraadt    13: CFLAGS= -g -ggdb
1.14      mickey     14: CFLAGS+= -Wall
1.5       deraadt    15: CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
                     16: CFLAGS+= -Wmissing-declarations
                     17: CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
                     18: CFLAGS+= -Wsign-compare
                     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>