22 lines
576 B
Makefile
22 lines
576 B
Makefile
# $FreeBSD$
|
|
# $FreeBSDru: frdp/www/ru/news/2001/Makefile,v 1.1 2002/02/15 14:59:38 phantom Exp $
|
|
# Original revision: 1.1
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
DATA= index.html
|
|
CLEANFILES+= index.html
|
|
|
|
index.html: ../oldnewsflash.xsl news.xml ../includes.xsl ../../includes.xsl
|
|
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
|
${.CURDIR}/../oldnewsflash.xsl ${.CURDIR}/news.xml
|
|
.if !defined(NO_TIDY)
|
|
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
|
.endif
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|