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

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

1.7     ! xsa         1: #      $OpenBSD: Makefile,v 1.6 2005/04/15 16:15:34 deraadt Exp $
1.1       jfb         2:
1.5       deraadt     3: PROG=  cvs
                      4: MAN=   cvs.1 cvsrc.5 cvsintro.7
1.1       jfb         5:
1.5       deraadt     6: SRCS=  cvs.c add.c admin.c annotate.c buf.c checkout.c cmd.c commit.c date.y \
                      7:        diff.c entries.c file.c getlog.c history.c hist.c import.c init.c \
1.7     ! xsa         8:        log.c logmsg.c proto.c rcs.c rcsnum.c release.c remove.c req.c resp.c \
        !             9:        root.c server.c status.c strtab.c tag.c update.c util.c version.c
1.1       jfb        10:
1.5       deraadt    11: BINOWN=        root
                     12:
                     13: #BINGRP=_cvsd
                     14: #BINMODE=555
                     15:
                     16: CFLAGS= -g -ggdb
                     17: CFLAGS+= -I${.CURDIR} -Wall
                     18: CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
                     19: CFLAGS+= -Wmissing-declarations
                     20: CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
                     21: CFLAGS+= -Wsign-compare
                     22: CFLAGS+= -DCVS
                     23: YFLAGS=
                     24:
                     25: INSTALL_STRIP=
                     26:
                     27: .include <bsd.prog.mk>