25 lines
615 B
Makefile
25 lines
615 B
Makefile
# $FreeBSD: www/en/news/1999/Makefile,v 1.2 2001/10/29 10:14:32 murray Exp $
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
DOCS= index.sgml
|
|
|
|
DATA= press.html
|
|
CLEANFILES+= press.html
|
|
|
|
press.html: ../oldpress.xsl press.xml\
|
|
../includes.xsl ../../includes.xsl ${XML_TRANSTABLE}
|
|
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
|
--param transtable.xml "'${XML_TRANSTABLE}'" \
|
|
${.CURDIR}/../oldpress.xsl ${.CURDIR}/press.xml
|
|
.if !defined(NO_TIDY)
|
|
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
|
.endif
|
|
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|