www/de/Makefile fixes only www/de/index.xsl 1.157 -> 1.159 www/de/support.sgml 1.355 -> 1.356 www/de/where.sgml 1.87 -> 1.88 www/de/docproj/Makefile new file www/de/docproj/doc-set.sgml new translation www/de/docproj/docproj.sgml new translation www/de/docproj/sgml.sgml new translation www/de/docproj/submitting.sgml new translation www/de/docproj/who.sgml new translation www/de/docs/man.sgml 1.8 -> 1.9 www/de/platforms/i386.sgml 1.9 -> 1.10 www/de/releases/index.sgml 1.111 -> 1.112 www/de/security/security.sgml 1.191 -> 1.192 www/de/share/sgml/navibar.l10n.ent fixes only www/de/share/sgml/news.xml 1.40 -> 1.44 + fixes www/de/share/sgml/press.xml 1.22 -> 1.25 Obtained from: The FreeBSD German Documentation Project.
70 lines
1.3 KiB
Makefile
70 lines
1.3 KiB
Makefile
# The FreeBSD Documentation Project
|
|
# The FreeBSD German Documentation Project
|
|
# $FreeBSD$
|
|
# $FreeBSDde: de-www/Makefile,v 1.41 2007/01/14 16:42:42 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+= docproj
|
|
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"
|