16c0dd5966
This includes (but not limited to) the following updates: - backups/ removed - Updates of the following chapters to the corresponding eng. rev: basics 1.76 bibliography 1.44 boot 1.38 config 1.57 cutting-edge 1.137 disks 1.107 kernelconfig 1.82 l10n 1.79 ports 1.178 security 1.114 serialcomms 1.65 sound 1.33 users 1.34 - Add chapters or dummies (not yet translated versions with a link to the corresponding chapter in the English handbook), based on: advanced-networking dummy desktop dummy eresources 1.93 install dummy introduction dummy linuxemu dummy mail dummy mirrors 1.234 :) ppp-and-slip dummy preface dummy printing dummy vinum dummy x11 dummy - Add colophon.sgml (based on 1.4) Obtained from: FreeBSD German Documentation Project, where the by far biggest part was Done by: Martin Heinen <mheinen0@wiesbaden-online.de>
71 lines
1.6 KiB
Makefile
71 lines
1.6 KiB
Makefile
#
|
|
# $FreeBSD$
|
|
# $FreeBSDde: de-docproj/books/handbook/Makefile,v 1.21 2002/09/05 19:50:09 mheinen Exp $
|
|
#
|
|
# Build the FreeBSD Handbook in its German translation.
|
|
#
|
|
|
|
MAINTAINER=alex@FreeBSD.org
|
|
|
|
DOC?= book
|
|
|
|
FORMATS?= html-split
|
|
|
|
HAS_INDEX= true
|
|
|
|
INSTALL_COMPRESSED?= gz
|
|
INSTALL_ONLY_COMPRESSED?=
|
|
|
|
# Images from the cross-document image library
|
|
IMAGES_LIB= callouts/1.png
|
|
IMAGES_LIB+= callouts/2.png
|
|
IMAGES_LIB+= callouts/3.png
|
|
IMAGES_LIB+= callouts/4.png
|
|
IMAGES_LIB+= callouts/5.png
|
|
|
|
#
|
|
# SRCS lists the individual SGML files that make up the document. Changes
|
|
# to any of these files will force a rebuild
|
|
#
|
|
|
|
# SGML content
|
|
SRCS+= book.sgml
|
|
SRCS+= advanced-networking/chapter.sgml
|
|
SRCS+= basics/chapter.sgml
|
|
SRCS+= bibliography/chapter.sgml
|
|
SRCS+= boot/chapter.sgml
|
|
SRCS+= cutting-edge/chapter.sgml
|
|
SRCS+= colophon.sgml
|
|
SRCS+= config/chapter.sgml
|
|
SRCS+= desktop/chapter.sgml
|
|
SRCS+= disks/chapter.sgml
|
|
SRCS+= eresources/chapter.sgml
|
|
SRCS+= kernelconfig/chapter.sgml
|
|
SRCS+= install/chapter.sgml
|
|
SRCS+= introduction/chapter.sgml
|
|
SRCS+= l10n/chapter.sgml
|
|
SRCS+= linuxemu/chapter.sgml
|
|
SRCS+= mail/chapter.sgml
|
|
SRCS+= mirrors/chapter.sgml
|
|
SRCS+= ppp-and-slip/chapter.sgml
|
|
SRCS+= ports/chapter.sgml
|
|
SRCS+= preface/preface.sgml
|
|
SRCS+= printing/chapter.sgml
|
|
SRCS+= security/chapter.sgml
|
|
SRCS+= serialcomms/chapter.sgml
|
|
SRCS+= sound/chapter.sgml
|
|
SRCS+= users/chapter.sgml
|
|
SRCS+= vinum/chapter.sgml
|
|
SRCS+= x11/chapter.sgml
|
|
|
|
# Entities
|
|
SRCS+= chapters.ent
|
|
SRCS+= newsgroups.ent
|
|
|
|
# alle Kapitel bauen
|
|
CHAPTERS?= ${SRCS:M*chapter.sgml}
|
|
|
|
SGMLFLAGS+= ${CHAPTERS:S/\/chapter.sgml//:S/^/-i chap./}
|
|
|
|
DOC_PREFIX?= ${.CURDIR}/../../..
|
|
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|