removes the now-useless cvsindex variable; it wasn't really necessary, anyway, since if the file to checkout can't be found, cvs(1) will fail, and make(1) will follow.
38 lines
765 B
Makefile
38 lines
765 B
Makefile
# $FreeBSD: www/en/copyright/Makefile,v 1.10 2000/11/07 04:05:13 kuriyama Exp $
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
DOCS= license.sgml
|
|
DOCS+= freebsd-license.sgml
|
|
DOCS+= daemon.sgml
|
|
DOCS+= copyright.sgml
|
|
|
|
INDEXLINK= copyright.html
|
|
|
|
CVS_READONLY?= YES
|
|
CVS_OPT+= -Q
|
|
.if !empty(CVS_READONLY)
|
|
CVS_OPT+= -R
|
|
.endif
|
|
|
|
|
|
DATA+= COPYING COPYING.LIB ${LEGAL}
|
|
|
|
# FreeBSD Ports redistribution restrictions
|
|
LEGAL= LEGAL
|
|
LEGAL_FILE= ports/LEGAL
|
|
CLEANFILES+= ${LEGAL}
|
|
.if defined(NOPORTSCVS)
|
|
${LEGAL}: $${PORTSBASE}/${LEGAL_FILE}
|
|
cp ${PORTSBASE}/${LEGAL_FILE} ${LEGAL}
|
|
.else
|
|
${LEGAL}:
|
|
cvs ${CVS_OPT} co -p ${LEGAL_FILE} > ${.TARGET}
|
|
.endif
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|