opnsense-src/gnu/usr.bin/cvs/cvs/Makefile
Bruce Evans 0641ff3b3d Add dependencies on libraries to DPADD.
Move another include of bsd.prog.mk to the end.
1994-08-28 18:18:19 +00:00

33 lines
783 B
Makefile

.if !defined(FREEBSD_DEVELOPER)
PROG = cvs
.else
PROG = ncvs
.endif
CFLAGS += -I${.CURDIR}/../lib \
-DDIRENT -DSTDC_HEADERS -DPOSIX -DBROKEN_SIGISMEMBER \
-DFTIME_MISSING -DHAVE_TIMEZONE -DUTIME_NULL_MISSING
DPADD+= ${LIBCVS}
LDADD+= -lcvs
.if defined(FREEBSD_DEVELOPER)
CFLAGS+= -DFREEBSD_DEVELOPER
BINGRP= ncvs
#BINMODE=2555
.endif
SRCS = add.c admin.c checkin.c checkout.c classify.c commit.c \
create_adm.c diff.c entries.c find_names.c history.c ignore.c \
import.c lock.c log.c logmsg.c main.c rcs.c modules.c \
no_diff.c parseinfo.c patch.c recurse.c release.c remove.c repos.c rtag.c \
status.c tag.c update.c vers_ts.c version.c
MAN1= cvs.1
MAN5= cvs.5
check:
@echo `pwd` ${.CURDIR}
.include "../../Makefile.inc"
.include "../Makefile.inc"
.include <bsd.prog.mk>