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

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

1.17    ! joris       1: #      $OpenBSD: Makefile,v 1.16 2005/11/12 21:34:48 niallo 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.5       deraadt     7: SRCS=  cvs.c add.c admin.c annotate.c buf.c checkout.c cmd.c commit.c date.y \
1.17    ! joris       8:        diff.c diff3.c edit.c entries.c fatal.c file.c getlog.c history.c hist.c \
1.8       jfb         9:        import.c init.c log.c logmsg.c proto.c rcs.c rcsnum.c release.c \
1.16      niallo     10:        remove.c req.c resp.c root.c server.c status.c tag.c \
1.17    ! joris      11:        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=
                     20:
                     21: INSTALL_STRIP=
                     22:
                     23: .include <bsd.prog.mk>