54cf68eab2
to process generated HTML. This not cause any side effects except leaving some character entities in their numeric form instead converting them into alphabetical notation (< instead of <), but since all browsers understand such cases it is not a problem. This commit should make all translations tidy clean, since tidy should not arise entities conversion problem as it did for long time before. Therefore all occurences of manual settings of TIDYFLAGS and NO_TIDY declarations for translations are removed. No objections from: -doc Requested by: Russian and Japanese translation teams
27 lines
435 B
Makefile
27 lines
435 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
# Build the FreeBSD FAQ
|
|
#
|
|
# Original revision: 1.6
|
|
#
|
|
|
|
MAINTAINER=kuriyama@FreeBSD.ORG
|
|
|
|
DOC?= book
|
|
|
|
FORMATS?= html-split html
|
|
|
|
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
|
|
|
|
DOC_PREFIX?= ${.CURDIR}/../../..
|
|
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|