mirror of
https://github.com/opnsense/src.git
synced 2026-03-24 19:53:08 -04:00
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
27 lines
604 B
Makefile
27 lines
604 B
Makefile
# $FreeBSD$
|
|
|
|
BINDIR?= ${INFODIR}
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
.PATH: ${CVSDIR}/doc
|
|
|
|
MAKEINFOFLAGS+= -I ${CVSDIR}/doc
|
|
|
|
INFO= cvs cvsclient
|
|
INFOSECTION= "Programming & development tools."
|
|
INFOENTRY_cvs= "* CVS: (cvs). CVS Reference Manual."
|
|
INFOENTRY_cvsclient= "* CVS-CLIENT: (cvsclient). CVS client/server Reference Manual."
|
|
|
|
|
|
cvs.info cvsclient.info: CVSvn.texi
|
|
|
|
CLEANFILES+= CVSvn.texi
|
|
|
|
CVSvn.texi: ${CVSDIR}/src/version.c
|
|
echo "@set CVSVN `sed < ${CVSDIR}/src/version.c \
|
|
-e '/version_string/!d' \
|
|
-e 's/[^0-9.]*\([0-9.]*\).*/\1/' \
|
|
-e q`" > $@
|
|
|
|
.include <bsd.info.mk>
|