- add doc.common.mk, which defines variables, targets, and dependencies commonly used in www/ and doc/. - move www/<lang>/includes.xsl to the language independent directory and split into several files. - add transtable*.xsl and transtable.xml to support localized mirror names. - make doc/{en_US.ISO8859-1,ja_JP.eucJP}/books/handbook/ use mirrors.xml (mirrors and eresources). - make www/{en,ja}/index.xsl use mirrors.xml. For details, please see doc/share/sgml/README.mirrors for the moment. Reviewed by: simon and Alex Dupre <sysadmin@alexdupre.com>
23 lines
513 B
Makefile
23 lines
513 B
Makefile
# $FreeBSD: www/en/security/Makefile,v 1.8 2003/09/29 16:46:32 hrs Exp $
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
DOCS=
|
|
DOCS+= security.sgml
|
|
|
|
INDEXLINK= security.html
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
|
|
|
CLEANFILES+= advisories.html.inc
|
|
|
|
security.html: advisories.html.inc
|
|
|
|
advisories.html.inc: mkindex.xsl ${XML_ADVISORIES}
|
|
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
|
${.CURDIR}/mkindex.xsl ${XML_ADVISORIES}
|