doc/en/gnome/Makefile
Joe Marcus Clarke 6faf82c87c Add an RDF newsfeed for the FreeBSD GNOME project. This feed can be accessed
by pointing your RDF consumer at:

http://www.FreeBSD.org/gnome/news.rdf

Coming soon: Patches for Evolution to take advantage of this newsfeed.
2002-11-21 21:39:42 +00:00

43 lines
1.1 KiB
Makefile

# $FreeBSD: www/en/gnome/Makefile,v 1.11 2002/08/25 19:14:58 marcus Exp $
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
.if exists(../Makefile.inc)
.include "../Makefile.inc"
.endif
SUBDIR= docs
SUBDIR+= images
DOCS= screenshots.sgml
DOCS+= contact.sgml
DATA= index.html newsflash.html news.rdf
CLEANFILES= index.html
CLEANFILES+= newsflash.html
CLEANFILES+= news.rdf
index.html! index.xsl news.xml includes.xsl ../includes.xsl
${XSLTPROC} ${XSLTPROCOPTS:N-nonet} -o index.html \
${.CURDIR}/index.xsl ${.CURDIR}/news.xml
.if !defined(NO_TIDY)
-${TIDY} ${TIDYOPTS} index.html
.endif
news.rdf! rss.xsl news.xml includes.xsl ../includes.xsl
${XSLTPROC} ${XSLTPROCOPTS:N-nonet} -o news.rdf \
${.CURDIR}/rss.xsl ${.CURDIR}/news.xml
.if !defined(NO_TIDY)
-${TIDY} -xml -wrap 0 ${TIDYOPTS} news.rdf
.endif
newsflash.html: newsflash.xsl news.xml includes.xsl ../includes.xsl
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
${.CURDIR}/newsflash.xsl ${.CURDIR}/news.xml
.if !defined(NO_TIDY)
-${TIDY} ${TIDYOPTS} ${.TARGET}
.endif
.include "${WEB_PREFIX}/share/mk/web.site.mk"