The whole release notes complex needs revisiting in 2003 to prevent a re-occurence of the problems we had with www.freebsd.org/handbook and www.freebsd.org/faq
48 lines
980 B
Makefile
48 lines
980 B
Makefile
# The FreeBSD Documentation Project
|
|
# The FreeBSD German Documentation Project
|
|
# $FreeBSD$
|
|
# $FreeBSDde: de-www/Makefile,v 1.10 2002/12/08 00:18:43 ue Exp $
|
|
|
|
.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+= availability.sgml
|
|
DOCS+= index.sgml
|
|
DOCS+= relnotes.sgml
|
|
|
|
CLEANFILES+=atoz.sgml site.sgml
|
|
|
|
# These will be directly installed.
|
|
|
|
#DATA= robots.txt index.html
|
|
|
|
# Subdirectories
|
|
# SGML
|
|
SUBDIR= FAQ
|
|
SUBDIR+= handbook
|
|
SUBDIR+= releases
|
|
.if !defined(WEB_ONLY) || empty(WEB_ONLY)
|
|
SUBDIR+= doc
|
|
.endif
|
|
.if defined(BUILD_RELNOTES)
|
|
SUBDIR+= relnotes
|
|
.endif
|
|
|
|
# These *must* be listed after the "doc" subdir, as they create symlinks
|
|
# in to it.
|
|
.if !defined(WEB_ONLY) || empty(WEB_ONLY)
|
|
#SUBDIR+= tutorials
|
|
.endif
|
|
|
|
SGMLFLAGS+= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr
|
|
|
|
WEBDIR= data/de
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|