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

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

1.12    ! xsa         1: #      $OpenBSD: Makefile,v 1.11 2005/07/04 07:11:10 xsa Exp $
1.1       jfb         2:
1.5       deraadt     3: PROG=  cvs
1.12    ! xsa         4: MAN=   cvs.1 cvsignore.5 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 \
1.11      xsa         7:        diff.c edit.c entries.c file.c getlog.c history.c hist.c \
1.8       jfb         8:        import.c init.c log.c logmsg.c proto.c rcs.c rcsnum.c release.c \
                      9:        remove.c req.c resp.c root.c server.c status.c strtab.c tag.c \
1.11      xsa        10:        update.c util.c version.c watch.c
1.1       jfb        11:
1.8       jfb        12: BINDIR= /usr/bin
1.5       deraadt    13: BINOWN=        root
                     14:
                     15: CFLAGS= -g -ggdb
                     16: CFLAGS+= -I${.CURDIR} -Wall
                     17: CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
                     18: CFLAGS+= -Wmissing-declarations
                     19: CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
                     20: CFLAGS+= -Wsign-compare
                     21: YFLAGS=
                     22:
                     23: INSTALL_STRIP=
                     24:
                     25: .include <bsd.prog.mk>