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

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

1.46    ! joris       1: #      $OpenBSD: Makefile,v 1.45 2008/03/02 11:29:24 brad Exp $
1.1       jfb         2:
1.22      joris       3: PROG=  opencvs
1.43      deraadt     4: MAN=   cvsintro.7 # cvs.1 cvs.5
1.14      mickey      5: CPPFLAGS+=-I${.CURDIR}
1.1       jfb         6:
1.41      tobias      7: SRCS=  cvs.c add.c admin.c annotate.c atomicio.c commit.c config.c \
                      8:        checkout.c client.c buf.c cmd.c date.y diff.c diff3.c \
                      9:        diff_internals.c edit.c entries.c fatal.c file.c getlog.c history.c \
1.42      joris      10:        log.c logmsg.c modules.c import.c init.c release.c remove.c \
                     11:        repository.c rcs.c rcsnum.c remote.c root.c server.c status.c tag.c \
1.46    ! joris      12:        trigger.c worklist.c util.c update.c version.c watch.c xmalloc.c
1.1       jfb        13:
1.21      ray        14: CFLAGS+=-Wall
                     15: CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
                     16: CFLAGS+=-Wmissing-declarations
                     17: CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
                     18: CFLAGS+=-Wsign-compare
                     19: DEBUG= -g -ggdb
1.5       deraadt    20: YFLAGS=
                     21:
                     22: INSTALL_STRIP=
                     23:
                     24: .include <bsd.prog.mk>