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

Diff for /src/usr.bin/cvs/Makefile between version 1.4 and 1.5

version 1.4, 2005/04/06 22:08:53 version 1.5, 2005/04/15 15:47:06
Line 1 
Line 1 
 #       $OpenBSD$  #       $OpenBSD$
   
 .include <bsd.own.mk>  PROG=   cvs
   MAN=    cvs.1 cvsrc.5 cvsintro.7
   
 SUBDIR= cvs rcs  SRCS=   cvs.c add.c admin.c annotate.c buf.c checkout.c cmd.c commit.c date.y \
           diff.c entries.c file.c getlog.c history.c hist.c import.c init.c \
           log.c logmsg.c proto.c rcs.c rcsnum.c remove.c req.c resp.c root.c \
           server.c status.c strtab.c tag.c update.c util.c version.c
   
 .include <bsd.subdir.mk>  BINDIR= /usr/bin
   BINOWN= root
   
   #BINGRP=_cvsd
   #BINMODE=555
   
   CFLAGS= -g -ggdb
   CFLAGS+= -I${.CURDIR} -Wall
   CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
   CFLAGS+= -Wmissing-declarations
   CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
   CFLAGS+= -Wsign-compare
   CFLAGS+= -DCVS
   YFLAGS=
   
   INSTALL_STRIP=
   
   .include <bsd.prog.mk>

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5