222defdacd
- use HAS_INDEX Submitted by: Martin Heinen <martin@sumuk.de> Obtained by: FreeBSD German Documentation Project
47 lines
985 B
Makefile
47 lines
985 B
Makefile
#
|
|
# $FreeBSD$
|
|
# $FreeBSDde: de-docproj/books/handbook/Makefile,v 1.15 2002/01/27 14:35:08 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?=
|
|
|
|
#
|
|
# 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+= basics/chapter.sgml
|
|
SRCS+= bibliography/chapter.sgml
|
|
SRCS+= boot/chapter.sgml
|
|
SRCS+= config/chapter.sgml
|
|
SRCS+= disks/chapter.sgml
|
|
SRCS+= kernelconfig/chapter.sgml
|
|
SRCS+= ports/chapter.sgml
|
|
SRCS+= security/chapter.sgml
|
|
SRCS+= sound/chapter.sgml
|
|
SRCS+= users/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"
|