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

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

1.48    ! tobias      1: #      $OpenBSD: Makefile,v 1.47 2008/06/21 15:39:15 joris 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 \
1.47      joris       9:        diff_internals.c edit.c entries.c fatal.c file.c getlog.c hash.c \
                     10:        hash_func.c history.c log.c logmsg.c modules.c import.c init.c  \
1.48    ! tobias     11:        release.c remove.c repository.c rcs.c rcsnum.c rcsparse.c remote.c \
        !            12:        root.c server.c status.c tag.c trigger.c worklist.c util.c update.c \
        !            13:        version.c watch.c xmalloc.c
1.1       jfb        14:
1.21      ray        15: CFLAGS+=-Wall
                     16: CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
                     17: CFLAGS+=-Wmissing-declarations
                     18: CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
                     19: CFLAGS+=-Wsign-compare
                     20: DEBUG= -g -ggdb
1.5       deraadt    21: YFLAGS=
                     22:
                     23: INSTALL_STRIP=
                     24:
                     25: .include <bsd.prog.mk>