is not defined. - URL_RELPREFIX must always point the top page's URL (http://www.FreeBSD.org) in relative form, defined in Makefile. - &url.base; can be used in doc/<langcode>/*. It will be replaced with the real URL which points the top page. For translators: Please make sure to define URL_RELPREFIX to point the top page. The localized docs have different directory hierarchy in its URL from the English version. Tested by: den
29 lines
460 B
Makefile
29 lines
460 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
# Build the FreeBSD FAQ
|
|
#
|
|
|
|
MAINTAINER=doc@FreeBSD.org
|
|
|
|
DOC?= book
|
|
|
|
FORMATS?= html-split html
|
|
|
|
INSTALL_COMPRESSED?= gz
|
|
INSTALL_ONLY_COMPRESSED?=
|
|
|
|
WITH_BIBLIOXREF_TITLE?=YES
|
|
|
|
#
|
|
# 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
|
|
|
|
URL_RELPREFIX?= ../../../..
|
|
DOC_PREFIX?= ${.CURDIR}/../../..
|
|
|
|
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|