4fe414e55f
- Move files under <lang>/htdocs/share to <lang>/share. - s/WEB_PREFIX/DOC_PREFIX/ - Update the webupdate script to use the SVN repository. Approved by: doceng (implicit)
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
# $FreeBSD: www/hu/events/Makefile,v 1.1 2009/04/06 17:56:08 pgj Exp $
|
|
|
|
###################################################
|
|
# The FreeBSD Hungarian Documentation Project #
|
|
###################################################
|
|
# %SOURCE% en/events/Makefile
|
|
# %SRCID% 1.18
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
# The year the top level events.html file starts from:
|
|
YEARSTART= 2010
|
|
# Years to generate past events pages for and link from top level:
|
|
PASTYEARS= 2009 2008 2007 2006 2005 2004 2003
|
|
|
|
DATA= events.css
|
|
INDEXLINK= events.html
|
|
|
|
XMLDOCS+= events:../../share/sgml/templates.events.xsl:${XML_EVENTS_EVENTS}:
|
|
PARAMS.events= --param startyear ${YEARSTART}
|
|
PARAMS.events+= --stringparam pastyears '${PASTYEARS}'
|
|
DEPENDSET.events= events
|
|
|
|
.for year in ${PASTYEARS}
|
|
XMLDOCS+= events${year}:${XSL_EVENTS_PAST}:${XML_EVENTS_EVENTS}:
|
|
PARAMS.events${year}= --param year ${year}
|
|
PARAMS.events${year}+= --stringparam pastyears '${PASTYEARS}'
|
|
DEPENDSET.events${year}= events
|
|
.endfor
|
|
|
|
XMLDOCS+= events_ics:${XSL_EVENTS_ICS}:${XML_EVENTS_EVENTS}:events.ics
|
|
DEPENDSET.events_ics= events
|
|
|
|
XMLDOCS+= events_rss:rss.xsl:${XML_EVENTS_EVENTS}:rss.xml
|
|
|
|
.include "${DOC_PREFIX}/share/mk/web.site.mk"
|