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

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

1.38    ! jmc         1: #      $OpenBSD: Makefile,v 1.37 2007/02/14 06:34:20 niallo 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 \
                      9:        fatal.c file.c getlog.c log.c logmsg.c import.c init.c remove.c \
1.36      xsa        10:        repository.c rcs.c rcsnum.c remote.c root.c server.c \
1.35      xsa        11:        status.c tag.c worklist.c util.c update.c version.c watch.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:
1.37      niallo     21: DPADD+=        ${LIBZ}
                     22: LDADD+=        -lz
1.5       deraadt    23:
                     24: INSTALL_STRIP=
                     25:
                     26: .include <bsd.prog.mk>