35babe0ae5
set on some files as a workaround for binary check. - Fix pathname for svn co in the webupdate script. Approved by: doceng (implicit)
43 lines
829 B
Makefile
43 lines
829 B
Makefile
# $FreeBSD$
|
|
|
|
# The FreeBSD French Documentation Project
|
|
# Original revision: 1.15
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
DOCS= copyright.sgml
|
|
DOCS+= daemon.sgml
|
|
DOCS+= freebsd-doc-license.sgml
|
|
DOCS+= freebsd-license.sgml
|
|
DOCS+= license.sgml
|
|
DOCS+= trademarks.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 "${DOC_PREFIX}/share/mk/web.site.mk"
|