mirror of
https://github.com/opnsense/src.git
synced 2026-03-16 07:41:02 -04:00
33 lines
783 B
Makefile
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>
|