- Merge the changes into the external German repository. - Fix problems caused by this process. - Merge the corrected version back. 2. MFbed: Update the German website. www/de/about.sgml 1.5 -> 1.10 www/de/applications.sgml 1.31 -> 1.33 www/de/index.xsl 1.152 -> 1.156 www/de/internet.sgml 1.35 -> 1.37 www/de/send-pr.sgml 1.52 -> 1.54 www/de/where.sgml 1.84 -> 1.86 www/de/community/mailinglists.sgml 1.9 -> 1.11 www/de/news/Makefile 1.43 -> 1.46 www/de/news/news.sgml 1.44 -> 1.46 www/de/platforms/sparc.sgml 1.26 -> 1.28 www/de/platforms/ia64/index.xsl 1.5 -> 1.7 www/de/share/sgml/navibar.l10n.ent 1.1 -> 1.5 www/de/share/sgml/news.xml 1.1 -> 1.16 www/de/share/sgml/press.xml 1.1 -> 1.11 Obtained from: The FreeBSD German Documentation Project.
69 lines
1.3 KiB
Makefile
69 lines
1.3 KiB
Makefile
# The FreeBSD Documentation Project
|
|
# The FreeBSD German Documentation Project
|
|
# $FreeBSD$
|
|
# $FreeBSDde: de-www/Makefile,v 1.40 2006/10/20 17:53:21 jkois Exp $
|
|
# basiert auf: 1.134
|
|
|
|
.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= about.sgml
|
|
DOCS+= applications.sgml
|
|
DOCS+= availability.sgml
|
|
DOCS+= community.sgml
|
|
DOCS+= docs.sgml
|
|
DOCS+= features.sgml
|
|
DOCS+= internet.sgml
|
|
DOCS+= mailto.sgml
|
|
DOCS+= relnotes.sgml
|
|
DOCS+= send-pr.sgml
|
|
DOCS+= support.sgml
|
|
DOCS+= where.sgml
|
|
|
|
# These will be directly installed.
|
|
|
|
#DATA= favicon.ico
|
|
#DATA+= robots.txt
|
|
#DATA+= freebsd.css
|
|
#DATA+= vendors.html
|
|
|
|
# Subdirectories
|
|
# SGML
|
|
SUBDIR= community
|
|
SUBDIR+= docs
|
|
SUBDIR+= news
|
|
SUBDIR+= FAQ
|
|
SUBDIR+= handbook
|
|
SUBDIR+= platforms
|
|
SUBDIR+= projects
|
|
SUBDIR+= releases
|
|
SUBDIR+= security
|
|
SUBDIR+= support
|
|
.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
|
|
|
|
# these files are generated by using separate rules.
|
|
DATA+= index.html
|
|
CLEANFILES+= index.html
|
|
|
|
XMLDOCS= index:xsl:${XML_NEWS_NEWS}:
|
|
DEPENDSET.index=transtable mirrors news press events \
|
|
advisories notices
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|