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

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

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