doc/de/Makefile
Christian Brueffer e548693c9d MFbed:
Makefile                        1.105 -> 1.111
applications.sgml               1.24  -> 1.26
includes.sgml                   change entries to 5.2.1-RELEASE
includes.xsl                    point to original release notes
index.xsl                       1.92  -> 1.100
internet.sgml                   1.30  -> 1.33
mailto.sgml                     misc fixes
navigation.xml                  new   -> 1.4
news/2002/Makefile              1.1   -> 1.2
news/2002/news.xml              1.1   -> 1.2
news/Makefile                   1.38  -> 1.39
news/includes.xsl               1.5   -> 1.6
news/news.xml                   1.192 -> 1.216
news/newsflash.xsl              1.9   -> 1.11
news/oldnewsflash.xsl           1.5   -> 1.6
news/press.xml                  1.119 -> 1.129
news/press.xsl                  1.5   -> 1.8
platforms/amd64.sgml            1.5   -> 1.8
platforms/ia64/index.sgml       1.4   -> 1.5
platforms/ia64/machines.sgml    1.1   -> 1.5
platforms/ia64/refs.sgml        1.5   -> 1.6
platforms/ia64/todo.sgml        1.6   -> 1.7
platforms/mips.sgml             1.3   -> 1.4
platforms/pc98.sgml             1.8   -> 1.10
platforms/ppc.sgml              1.8   -> 1.9
platforms/sparc.sgml            1.17  -> 1.18
releases/index.sgml             1.94  -> 1.97
relnotes.sgml                   1.8   -> 1.10

Obtained from:  The FreeBSD German Documentation Project
2004-05-15 12:39:09 +00:00

72 lines
1.7 KiB
Makefile

# The FreeBSD Documentation Project
# The FreeBSD German Documentation Project
# $FreeBSD: www/de/Makefile,v 1.15 2004/04/06 11:41:17 phantom Exp $
# $FreeBSDde: de-www/Makefile,v 1.23 2004/05/03 22:58:44 brueffer Exp $
# basiert auf: 1.111
.if exists(Makefile.conf)
.include "Makefile.conf"
.endif
.if exists(../Makefile.inc)
.include "../Makefile.inc"
.endif
# These are turned into validated, normalized HTML files.
DOCS= applications.sgml
DOCS+= availability.sgml
DOCS+= features.sgml
DOCS+= internet.sgml
DOCS+= mailto.sgml
DOCS+= relnotes.sgml
DOCS+= where.sgml
# These will be directly installed.
#DATA= favicon.ico
#DATA+= robots.txt
#DATA+= freebsd.css
#DATA+= vendors.html
# Subdirectories
# SGML
SUBDIR= news
SUBDIR+= FAQ
SUBDIR+= handbook
SUBDIR+= platforms
SUBDIR+= releases
SUBDIR+= security
.if !defined(WEB_ONLY) || empty(WEB_ONLY)
#SUBDIR+= ports
SUBDIR+= doc
.endif
.if defined(BUILD_RELNOTES)
SUBDIR+= relnotes
.endif
# Non-SGML
SUBDIR+= gifs
WEBDIR?= data/de
# index.html is special, and generated from index.xsl and news/news.xml
DATA+= index.html
CLEANFILES+= index.html
.include "${WEB_PREFIX}/share/mk/web.site.mk"
index.html: index.xsl ${XML_INCLUDES}\
${XML_NEWS_INCLUDES} ${XML_NEWS_NEWS} ${XML_NEWS_PRESS}\
${XML_MIRRORS} ${XML_TRANSTABLE} ${XML_ADVISORIES} ${XML_NAVIGATION}
${XSLTPROC} ${XSLTPROCOPTS} \
-o $@ \
--param mirrors.xml "'${XML_MIRRORS}'" \
--param advisories.xml "'${XML_ADVISORIES}'" \
--param news.press.xml "'${XML_NEWS_PRESS}'" \
--param news.project.xml "'${XML_NEWS_NEWS}'" \
--param transtable.xml "'${XML_TRANSTABLE}'" \
--param navigation.xml "'${XML_NAVIGATION}'" \
${.CURDIR}/index.xsl ${XML_NEWS_NEWS}
.if !defined(NO_TIDY)
-${TIDY} ${TIDYOPTS} ${.TARGET}
.endif