files. fr/news/status/report.xsl: MFen 1.5 fr/news/status/report-sample.xml: MFen 1.2 fr/news/status/status.sgml: MFen 1.13 fr/news/status/includes.xsl: MFen 1.2 fr/news/status/Makefile: MFen 1.17 fr/news/status/report-july-2002-aug-2002.xml: MFen (no revision number) Approved by: gioria (mentor)
41 lines
914 B
Makefile
41 lines
914 B
Makefile
# $FreeBSD$
|
|
|
|
# The FreeBSD French Documentation Project
|
|
# Original revision: 1.17
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
.SUFFIXES: .xml .html
|
|
|
|
DOCS= status.sgml
|
|
|
|
# DATA= report-june-2001.html
|
|
# DATA+= report-july-2001.html
|
|
# DATA+= report-august-2001.html
|
|
# DATA+= report-september-2001.html
|
|
# DATA+= report-november-2001.html
|
|
# DATA+= report-dec-2001-jan-2002.html
|
|
# DATA+= report-feb-2002-apr-2002.html
|
|
# DATA+= report-may-2002-june-2002.html
|
|
DATA+= report-july-2002-aug-2002.html
|
|
|
|
# Install a sample <project> entry.
|
|
DATA+= report-sample.xml
|
|
|
|
CLEANFILES+= ${DATA:M*.html}
|
|
|
|
.xml.html: report.xsl includes.xsl
|
|
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
|
${.CURDIR}/report.xsl ${.IMPSRC}
|
|
.if !defined(NO_TIDY)
|
|
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
|
.endif
|
|
|
|
INDEXLINK= status.html
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|