69 lines
1.4 KiB
Makefile
69 lines
1.4 KiB
Makefile
# The FreeBSD Documentation Project
|
|
# The FreeBSD German Documentation Project
|
|
# $FreeBSD: www/de/Makefile,v 1.28 2006/02/21 18:02:21 jkois Exp $
|
|
# $FreeBSDde: de-www/Makefile,v 1.39 2006/02/19 18:15:15 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"
|