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

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

1.44    ! joris       1: #      $OpenBSD: Makefile,v 1.43 2008/02/26 21:08:35 deraadt 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 \
                     12:        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=
1.18      xsa        21:
1.37      niallo     22: DPADD+=        ${LIBZ}
1.44    ! joris      23: LDADD+=
1.5       deraadt    24:
                     25: INSTALL_STRIP=
                     26:
                     27: .include <bsd.prog.mk>